Update copyright notices with scripts/update-copyrights
[glibc.git] / sysdeps / unix / sysv / linux / sh / sh3 / sys / ucontext.h
blobfe06b074eee7021c9d4cf6cb55f223c6e92f5c6c
1 /* Copyright (C) 1999-2014 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 /* Where is System V/SH ABI? */
20 #ifndef _SYS_UCONTEXT_H
21 #define _SYS_UCONTEXT_H 1
23 #include <features.h>
24 #include <signal.h>
26 /* We need the signal context definitions even if they are not used
27 included in <signal.h>. */
28 #include <bits/sigcontext.h>
31 typedef int greg_t;
33 /* Number of general registers. */
34 #define NFPREG 16
36 /* Container for all general registers. */
37 typedef greg_t gregset_t[NFPREG];
39 #ifdef __USE_GNU
40 /* Number of each register is the `gregset_t' array. */
41 enum
43 R0 = 0,
44 #define R0 R0
45 R1 = 1,
46 #define R1 R1
47 R2 = 2,
48 #define R2 R2
49 R3 = 3,
50 #define R3 R3
51 R4 = 4,
52 #define R4 R4
53 R5 = 5,
54 #define R5 R5
55 R6 = 6,
56 #define R6 R6
57 R7 = 7,
58 #define R7 R7
59 R8 = 8,
60 #define R8 R8
61 R9 = 9,
62 #define R9 R9
63 R10 = 10,
64 #define R10 R10
65 R11 = 11,
66 #define R11 R11
67 R12 = 12,
68 #define R12 R12
69 R13 = 13,
70 #define R13 R13
71 R14 = 14,
72 #define R14 R14
73 R15 = 15,
74 #define R15 R15
76 #endif
78 /* Context to describe whole processor state. */
79 typedef struct
81 unsigned int oldmask;
82 gregset_t gregs;
83 unsigned int pc;
84 unsigned int pr;
85 unsigned int sr;
86 unsigned int gbr;
87 unsigned int mach;
88 unsigned int macl;
89 } mcontext_t;
91 /* Userlevel context. */
92 typedef struct ucontext
94 unsigned long int uc_flags;
95 struct ucontext *uc_link;
96 stack_t uc_stack;
97 mcontext_t uc_mcontext;
98 __sigset_t uc_sigmask;
99 } ucontext_t;
101 #endif /* sys/ucontext.h */