summaryrefslogtreecommitdiffstats
path: root/sys/amd64/include/ucontext.h
diff options
context:
space:
mode:
authordeischen <deischen@FreeBSD.org>2002-01-10 02:32:30 +0000
committerdeischen <deischen@FreeBSD.org>2002-01-10 02:32:30 +0000
commitf70fe994fa68e0808a81a45ceac9ac601ec99b40 (patch)
treee609c87db3eb6c094b3557905385dd042dff73fa /sys/amd64/include/ucontext.h
parent2d507f0adf63fb1f2fe94079fc6c9a701218999d (diff)
downloadFreeBSD-src-f70fe994fa68e0808a81a45ceac9ac601ec99b40.zip
FreeBSD-src-f70fe994fa68e0808a81a45ceac9ac601ec99b40.tar.gz
Use a spare slot in the machine context for a flags word to indicate
whether the machine context is valid and whether the FPU state is valid (saved). Mark the machine context valid before copying it out when sending a signal. Approved by: -arch
Diffstat (limited to 'sys/amd64/include/ucontext.h')
-rw-r--r--sys/amd64/include/ucontext.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/amd64/include/ucontext.h b/sys/amd64/include/ucontext.h
index c0a3aa8..a84a2cb 100644
--- a/sys/amd64/include/ucontext.h
+++ b/sys/amd64/include/ucontext.h
@@ -59,7 +59,10 @@ typedef struct __mcontext {
int mc_ss;
int mc_fpregs[28]; /* env87 + fpacc87 + u_long */
- int __spare__[17];
+#define __UC_MC_VALID 0x0001 /* mcontext register state is valid */
+#define __UC_FP_VALID 0x0002 /* FP registers have been saved */
+ int mc_flags;
+ int __spare__[16];
} mcontext_t;
#endif /* !_MACHINE_UCONTEXT_H_ */
OpenPOWER on IntegriCloud