diff options
author | marcel <marcel@FreeBSD.org> | 1999-11-30 15:02:28 +0000 |
---|---|---|
committer | marcel <marcel@FreeBSD.org> | 1999-11-30 15:02:28 +0000 |
commit | e25c88391a154000f257c361888277d349b2223f (patch) | |
tree | 6a97256c3ee7cdef6232e2c3b4f3a7467d7b4b89 /sys/i386/linux/linux.h | |
parent | ce9f30fbf1ca2b9409cfe998d0248a8011fcd21e (diff) | |
download | FreeBSD-src-e25c88391a154000f257c361888277d349b2223f.zip FreeBSD-src-e25c88391a154000f257c361888277d349b2223f.tar.gz |
Implement linux_sigaltstack.
Diffstat (limited to 'sys/i386/linux/linux.h')
-rw-r--r-- | sys/i386/linux/linux.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sys/i386/linux/linux.h b/sys/i386/linux/linux.h index 5499abd..d3ba6cc 100644 --- a/sys/i386/linux/linux.h +++ b/sys/i386/linux/linux.h @@ -48,6 +48,7 @@ typedef struct { } linux_fsid_t; typedef int linux_pid_t; typedef int linux_key_t; +typedef unsigned int linux_size_t; /* * Signal stuff... @@ -74,6 +75,13 @@ typedef struct { linux_sigset_t lsa_mask; } linux_sigaction_t; +typedef struct +{ + void *ss_sp; + int ss_flags; + linux_size_t ss_size; +} linux_stack_t; + /* * The Linux sigcontext, pretty much a standard 386 trapframe. */ |