2.9
[glibc/nacl-glibc.git] / sysdeps / unix / sysv / linux / sh / sh3 / sys / ucontext.h
blob946df0dfd6b4fedc15a81b85e82e7b44b823a4df
1 /* Copyright (C) 1999, 2000, 2001, 2005 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, write to the Free
16 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
17 02111-1307 USA. */
19 /* Where is System V/SH ABI? */
21 #ifndef _SYS_UCONTEXT_H
22 #define _SYS_UCONTEXT_H 1
24 #include <features.h>
25 #include <signal.h>
27 /* We need the signal context definitions even if they are not used
28 included in <signal.h>. */
29 #include <bits/sigcontext.h>
32 typedef int greg_t;
34 /* Number of general registers. */
35 #define NFPREG 16
37 /* Container for all general registers. */
38 typedef greg_t gregset_t[NFPREG];
40 #ifdef __USE_GNU
41 /* Number of each register is the `gregset_t' array. */
42 enum
44 R0 = 0,
45 #define R0 R0
46 R1 = 1,
47 #define R1 R1
48 R2 = 2,
49 #define R2 R2
50 R3 = 3,
51 #define R3 R3
52 R4 = 4,
53 #define R4 R4
54 R5 = 5,
55 #define R5 R5
56 R6 = 6,
57 #define R6 R6
58 R7 = 7,
59 #define R7 R7
60 R8 = 8,
61 #define R8 R8
62 R9 = 9,
63 #define R9 R9
64 R10 = 10,
65 #define R10 R10
66 R11 = 11,
67 #define R11 R11
68 R12 = 12,
69 #define R12 R12
70 R13 = 13,
71 #define R13 R13
72 R14 = 14,
73 #define R14 R14
74 R15 = 15,
75 #define R15 R15
77 #endif
79 /* Context to describe whole processor state. */
80 typedef struct
82 unsigned int oldmask;
83 gregset_t gregs;
84 unsigned int pc;
85 unsigned int pr;
86 unsigned int sr;
87 unsigned int gbr;
88 unsigned int mach;
89 unsigned int macl;
90 } mcontext_t;
92 /* Userlevel context. */
93 typedef struct ucontext
95 unsigned long int uc_flags;
96 struct ucontext *uc_link;
97 stack_t uc_stack;
98 mcontext_t uc_mcontext;
99 __sigset_t uc_sigmask;
100 } ucontext_t;
102 #endif /* sys/ucontext.h */