diff options
| author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-11-19 20:44:11 +0000 |
|---|---|---|
| committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-11-19 20:44:11 +0000 |
| commit | ff3402931b941712a0d9e030bfb76019a6b7ca2d (patch) | |
| tree | 451bb7d517237fb08bc2e5b0475028dc2fb6a195 | |
| parent | 69ee4b10a00d4fdfedf129b9e2f30eba43d787e9 (diff) | |
| download | uClibc-alpine-ff3402931b941712a0d9e030bfb76019a6b7ca2d.tar.bz2 uClibc-alpine-ff3402931b941712a0d9e030bfb76019a6b7ca2d.tar.xz | |
Copy from trunk.
| -rw-r--r-- | libc/sysdeps/linux/alpha/bits/kernel_sigaction.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/alpha/bits/kernel_sigaction.h b/libc/sysdeps/linux/alpha/bits/kernel_sigaction.h new file mode 100644 index 000000000..4c35d969c --- /dev/null +++ b/libc/sysdeps/linux/alpha/bits/kernel_sigaction.h @@ -0,0 +1,15 @@ +/* This is the sigaction struction from the Linux 2.1.20 kernel. */ + +struct old_kernel_sigaction { + __sighandler_t k_sa_handler; + unsigned long sa_mask; + unsigned int sa_flags; +}; + +/* This is the sigaction structure from the Linux 2.1.68 kernel. */ + +struct kernel_sigaction { + __sighandler_t k_sa_handler; + unsigned int sa_flags; + sigset_t sa_mask; +}; |
