2.9
[glibc/nacl-glibc.git] / sysdeps / mach / hurd / alpha / bits / sigcontext.h
blob4f13a2c9b2b0f0ea2792ab899f939f54769f4b2d
1 /* Machine-dependent signal context structure for GNU Hurd. Alpha version.
2 Copyright (C) 1994,97,2001 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18 02111-1307 USA. */
20 #if !defined _SIGNAL_H && !defined _SYS_UCONTEXT_H
21 # error "Never use <bits/sigcontext.h> directly; include <signal.h> instead."
22 #endif
24 #ifndef sc_alpha_thread_state
26 /* Signal handlers are actually called:
27 void handler (int sig, int code, struct sigcontext *scp); */
29 /* State of this thread when the signal was taken. */
30 struct sigcontext
32 /* These first members are machine-independent. */
34 long int sc_onstack; /* Nonzero if running on sigstack. */
35 __sigset_t sc_mask; /* Blocked signals to restore. */
37 /* MiG reply port this thread is using. */
38 unsigned long int sc_reply_port;
40 /* Port this thread is doing an interruptible RPC on. */
41 unsigned long int sc_intr_port;
43 /* Error code associated with this signal (interpreted as `error_t'). */
44 int sc_error;
46 /* All following members are machine-dependent. The rest of this
47 structure is written to be laid out identically to:
49 struct alpha_thread_state basic;
50 struct alpha_exc_state exc;
51 struct alpha_float_state fpu;
53 trampoline.c knows this, so it must be changed if this changes. */
55 #define sc_alpha_thread_state sc_regs /* Beginning of correspondence. */
56 long int sc_regs[31]; /* General registers $0..$30. */
57 long int sc_pc; /* Program counter. */
59 /* struct alpha_exc_state */
60 #define sc_alpha_exc_state sc_badvaddr
61 unsigned long int sc_badvaddr;
62 unsigned int sc_cause; /* Machine-level trap code. */
63 #define SC_CAUSE_SET_SSTEP 1
64 int sc_used_fpa; /* Nonzero if FPU was used. */
66 /* struct alpha_float_state
67 This is only filled in if sc_used_fpa is nonzero. */
68 #define sc_alpha_float_state sc_fpregs
69 double sc_fpregs[31]; /* Floating point registers $f0..$f30. */
70 long int sc_fpcsr; /* Floating point control/status register. */
73 #endif /* sc_alpha_thread_state */