]> git.ipfire.org Git - thirdparty/glibc.git/blame - ports/sysdeps/unix/sysv/linux/arm/sys/ucontext.h
Update copyright notices with scripts/update-copyrights
[thirdparty/glibc.git] / ports / sysdeps / unix / sysv / linux / arm / sys / ucontext.h
CommitLineData
d4697bc9 1/* Copyright (C) 1998-2014 Free Software Foundation, Inc.
77e906bb
UD
2 This file is part of the GNU C Library.
3
4 The GNU C Library is free software; you can redistribute it and/or
3214b89b
AJ
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.
77e906bb
UD
8
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
3214b89b 12 Lesser General Public License for more details.
77e906bb 13
3214b89b 14 You should have received a copy of the GNU Lesser General Public
ab84e3ff
PE
15 License along with the GNU C Library. If not, see
16 <http://www.gnu.org/licenses/>. */
77e906bb
UD
17
18/* System V/ARM ABI compliant context switching support. */
19
20#ifndef _SYS_UCONTEXT_H
21#define _SYS_UCONTEXT_H 1
22
23#include <features.h>
24#include <signal.h>
77e906bb 25
7a11d626
DJ
26/* We need the signal context definitions even if they are not used
27 included in <signal.h>. */
28#include <bits/sigcontext.h>
29
77e906bb
UD
30typedef int greg_t;
31
32/* Number of general registers. */
7a11d626 33#define NGREG 18
77e906bb
UD
34
35/* Container for all general registers. */
c1e30fd8 36typedef greg_t gregset_t[NGREG];
77e906bb
UD
37
38/* Number of each register is the `gregset_t' array. */
39enum
40{
c1e30fd8
PG
41 REG_R0 = 0,
42#define REG_R0 REG_R0
43 REG_R1 = 1,
44#define REG_R1 REG_R1
45 REG_R2 = 2,
46#define REG_R2 REG_R2
47 REG_R3 = 3,
48#define REG_R3 REG_R3
49 REG_R4 = 4,
50#define REG_R4 REG_R4
51 REG_R5 = 5,
52#define REG_R5 REG_R5
53 REG_R6 = 6,
54#define REG_R6 REG_R6
55 REG_R7 = 7,
56#define REG_R7 REG_R7
57 REG_R8 = 8,
58#define REG_R8 REG_R8
59 REG_R9 = 9,
60#define REG_R9 REG_R9
61 REG_R10 = 10,
62#define REG_R10 REG_R10
63 REG_R11 = 11,
64#define REG_R11 REG_R11
65 REG_R12 = 12,
66#define REG_R12 REG_R12
67 REG_R13 = 13,
68#define REG_R13 REG_R13
69 REG_R14 = 14,
70#define REG_R14 REG_R14
71 REG_R15 = 15
72#define REG_R15 REG_R15
77e906bb
UD
73};
74
c1e30fd8
PG
75struct _libc_fpstate
76{
77 struct
78 {
79 unsigned int sign1:1;
80 unsigned int unused:15;
81 unsigned int sign2:1;
82 unsigned int exponent:14;
83 unsigned int j:1;
84 unsigned int mantissa1:31;
85 unsigned int mantissa0:32;
86 } fpregs[8];
87 unsigned int fpsr:32;
88 unsigned int fpcr:32;
89 unsigned char ftype[8];
90 unsigned int init_flag;
91};
77e906bb 92/* Structure to describe FPU registers. */
c1e30fd8 93typedef struct _libc_fpstate fpregset_t;
77e906bb 94
7a11d626
DJ
95/* Context to describe whole processor state. This only describes
96 the core registers; coprocessor registers get saved elsewhere
97 (e.g. in uc_regspace, or somewhere unspecified on the stack
98 during non-RT signal handlers). */
99typedef struct sigcontext mcontext_t;
77e906bb
UD
100
101/* Userlevel context. */
102typedef struct ucontext
103 {
7a11d626 104 unsigned long uc_flags;
77e906bb 105 struct ucontext *uc_link;
77e906bb
UD
106 stack_t uc_stack;
107 mcontext_t uc_mcontext;
7a11d626
DJ
108 __sigset_t uc_sigmask;
109 unsigned long uc_regspace[128] __attribute__((__aligned__(8)));
77e906bb
UD
110 } ucontext_t;
111
112#endif /* sys/ucontext.h */