Update copyright notices with scripts/update-copyrights
[glibc.git] / sysdeps / sh / sys / ucontext.h
blob2e072c0b60d8c2c0ba14aae9add963ae30c8c2ad
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 typedef int greg_t;
28 /* Number of general registers. */
29 #define NFPREG 16
31 /* Container for all general registers. */
32 typedef greg_t gregset_t[NFPREG];
34 /* Number of each register is the `gregset_t' array. */
35 enum
37 R0 = 0,
38 #define R0 R0
39 R1 = 1,
40 #define R1 R1
41 R2 = 2,
42 #define R2 R2
43 R3 = 3,
44 #define R3 R3
45 R4 = 4,
46 #define R4 R4
47 R5 = 5,
48 #define R5 R5
49 R6 = 6,
50 #define R6 R6
51 R7 = 7,
52 #define R7 R7
53 R8 = 8,
54 #define R8 R8
55 R9 = 9,
56 #define R9 R9
57 R10 = 10,
58 #define R10 R10
59 R11 = 11,
60 #define R11 R11
61 R12 = 12,
62 #define R12 R12
63 R13 = 13,
64 #define R13 R13
65 R14 = 14,
66 #define R14 R14
67 R15 = 15,
68 #define R15 R15
71 typedef int freg_t;
73 /* Number of FPU registers. */
74 #define NFREG 16
76 /* Structure to describe FPU registers. */
77 typedef freg_t fpregset_t[NFREG];
79 /* Context to describe whole processor state. */
80 typedef struct
82 gregset_t gregs;
83 fpregset_t fpregs;
84 fpregset_t xfpregs;
85 } mcontext_t;
87 /* Userlevel context. */
88 typedef struct ucontext
90 unsigned long int uc_flags;
91 struct ucontext *uc_link;
92 __sigset_t uc_sigmask;
93 stack_t uc_stack;
94 mcontext_t uc_mcontext;
95 long int uc_filler[5];
96 } ucontext_t;
98 #endif /* sys/ucontext.h */