2.9
[glibc/nacl-glibc.git] / sysdeps / unix / sysv / linux / sh / sh4 / sys / ucontext.h
blobcd831a7a212d687332a4435a19b5223c79eeb86e
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 typedef int freg_t;
81 /* Number of FPU registers. */
82 #define NFPREG 16
84 /* Structure to describe FPU registers. */
85 typedef freg_t fpregset_t[NFPREG];
87 /* Context to describe whole processor state. */
88 typedef struct
90 unsigned int oldmask;
91 gregset_t gregs;
92 unsigned int pc;
93 unsigned int pr;
94 unsigned int sr;
95 unsigned int gbr;
96 unsigned int mach;
97 unsigned int macl;
98 fpregset_t fpregs;
99 fpregset_t xfpregs;
100 unsigned int fpscr;
101 unsigned int fpul;
102 unsigned int ownedfp;
103 } mcontext_t;
105 /* Userlevel context. */
106 typedef struct ucontext
108 unsigned long int uc_flags;
109 struct ucontext *uc_link;
110 stack_t uc_stack;
111 mcontext_t uc_mcontext;
112 __sigset_t uc_sigmask;
113 } ucontext_t;
115 #endif /* sys/ucontext.h */