Deleted Added
full compact
signal.h (66633) signal.h (67522)
1/* $FreeBSD: head/sys/ia64/include/signal.h 66633 2000-10-04 17:53:03Z dfr $ */
1/* $FreeBSD: head/sys/ia64/include/signal.h 67522 2000-10-24 19:54:38Z dfr $ */
2/* From: NetBSD: signal.h,v 1.3 1997/04/06 08:47:43 cgd Exp */
3
4/*
5 * Copyright (c) 1994, 1995 Carnegie-Mellon University.
6 * All rights reserved.
7 *
8 * Author: Chris G. Demetriou
9 *

--- 48 unchanged lines hidden (view full) ---

58typedef unsigned int osigset_t;
59struct osigcontext {};
60
61/*
62 * The sequence of the fields should match those in
63 * mcontext_t. Keep them in sync!
64 */
65struct sigcontext {
2/* From: NetBSD: signal.h,v 1.3 1997/04/06 08:47:43 cgd Exp */
3
4/*
5 * Copyright (c) 1994, 1995 Carnegie-Mellon University.
6 * All rights reserved.
7 *
8 * Author: Chris G. Demetriou
9 *

--- 48 unchanged lines hidden (view full) ---

58typedef unsigned int osigset_t;
59struct osigcontext {};
60
61/*
62 * The sequence of the fields should match those in
63 * mcontext_t. Keep them in sync!
64 */
65struct sigcontext {
66 sigset_t sc_mask; /* signal mask to restore */
66 sigset_t sc_mask; /* signal mask to restore */
67 unsigned long sc_onstack;
67 unsigned long sc_flags;
68 unsigned long sc_nat;
69 unsigned long sc_sp;
70 unsigned long sc_ip;
71 unsigned long sc_cfm;
72 unsigned long sc_um;
73 unsigned long sc_ar_rsc;
74 unsigned long sc_ar_bsp;

--- 13 unchanged lines hidden ---
68 unsigned long sc_flags;
69 unsigned long sc_nat;
70 unsigned long sc_sp;
71 unsigned long sc_ip;
72 unsigned long sc_cfm;
73 unsigned long sc_um;
74 unsigned long sc_ar_rsc;
75 unsigned long sc_ar_bsp;

--- 13 unchanged lines hidden ---