1 /* Copyright (C) 2000-2024 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 <https://www.gnu.org/licenses/>. */
18 #ifndef _SYS_UCONTEXT_H
19 #define _SYS_UCONTEXT_H 1
23 #include <bits/types/sigset_t.h>
24 #include <bits/types/stack_t.h>
28 # define __ctx(fld) fld
30 # define __ctx(fld) __ ## fld
33 /* Type for a program status word. */
36 unsigned long __ctx(mask
);
37 unsigned long __ctx(addr
);
38 } __attribute__ ((__aligned__(8))) __psw_t
;
40 /* Type for a general-purpose register. */
41 typedef unsigned long greg_t
;
43 /* And the whole bunch of them. We should have used `struct s390_regs',
44 but to avoid name space pollution and since the tradition says that
45 the register set is an array, we make gregset_t a simple array
46 that has the same size as s390_regs. This is needed for the
47 elf_prstatus structure. */
54 # define NGREG __NGREG
56 /* Must match kernels psw_t alignment. */
57 typedef greg_t gregset_t
[__NGREG
] __attribute__ ((__aligned__(8)));
65 /* Register set for the floating-point registers. */
68 unsigned int __ctx(fpc
);
69 fpreg_t
__ctx(fprs
)[16];
72 /* Context to describe whole processor state. */
76 unsigned long __ctx(gregs
)[16];
77 unsigned int __ctx(aregs
)[16];
78 fpregset_t
__ctx(fpregs
);
81 /* Userlevel context. */
82 typedef struct ucontext_t
84 unsigned long int __ctx(uc_flags
);
85 struct ucontext_t
*uc_link
;
87 mcontext_t uc_mcontext
;
94 #endif /* sys/ucontext.h */