1 /* Copyright (C) 1998-2016 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, see
16 <http://www.gnu.org/licenses/>. */
18 #ifndef _SYS_UCONTEXT_H
19 #define _SYS_UCONTEXT_H 1
24 /* We need the signal context definitions even if they are not exposed
26 #include <bits/sigcontext.h>
27 #include <bits/sigstack.h>
31 * These are here mostly for backwards compatibility with older Unices.
32 * IA-64 Linux does not distinguish between "struct sigcontext" and
33 * "ucontext_t" as all the necessary info is inside the former.
36 typedef struct sigcontext mcontext_t
;
38 #if __GNUC_PREREQ (3, 5)
39 # define _SC_GR0_OFFSET \
40 __builtin_offsetof (struct sigcontext, sc_gr[0])
41 #elif defined __GNUC__
42 # define _SC_GR0_OFFSET \
43 (((char *) &((struct sigcontext *) 0)->sc_gr[0]) - (char *) 0)
45 # define _SC_GR0_OFFSET 0xc8 /* pray that this is correct... */
48 typedef struct ucontext
55 unsigned long _pad
[_SC_GR0_OFFSET
/8];
56 struct ucontext
*_link
; /* this should overlay sc_gr[0] */
64 #define uc_mcontext _u._mc
65 #define uc_sigmask _u._mc.sc_mask
66 #define uc_stack _u._mc.sc_stack
67 #define uc_link _u._uc._link
69 #endif /* sys/ucontext.h */