diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-11-01 02:36:17 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-11-01 02:36:17 +0000 |
commit | 56bd58554f695b46acb80e11f8253198ab33c718 (patch) | |
tree | c01877d542041491466098d25f168e8b06fcb116 /sysdeps/unix/sysv/linux | |
parent | 882ed1bed6873b21dd5bfe74bb3d05fa8cc2435d (diff) | |
download | glibc-56bd58554f695b46acb80e11f8253198ab33c718.tar.gz glibc-56bd58554f695b46acb80e11f8253198ab33c718.tar.xz glibc-56bd58554f695b46acb80e11f8253198ab33c718.zip |
Update.
1999-10-11 Andreas Jaeger <aj@suse.de> * sysdeps/unix/sysv/linux/bits/siginfo.h (SI_KERNEL): Added. * sysdeps/unix/sysv/linux/mips/bits/siginfo.h: Likewise. Closes PR libc/1384.
Diffstat (limited to 'sysdeps/unix/sysv/linux')
-rw-r--r-- | sysdeps/unix/sysv/linux/bits/siginfo.h | 4 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/mips/bits/siginfo.h | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/bits/siginfo.h b/sysdeps/unix/sysv/linux/bits/siginfo.h index 39ef8eaae4..dcabddbf2c 100644 --- a/sysdeps/unix/sysv/linux/bits/siginfo.h +++ b/sysdeps/unix/sysv/linux/bits/siginfo.h @@ -124,8 +124,10 @@ enum # define SI_TIMER SI_TIMER SI_QUEUE, /* Sent by sigqueue. */ # define SI_QUEUE SI_QUEUE - SI_USER /* Sent by kill, sigsend, raise. */ + SI_USER, /* Sent by kill, sigsend, raise. */ # define SI_USER SI_USER + SI_KERNEL = 0x80 /* Send by kernel. */ +#define SI_KERNEL SI_KERNEL }; diff --git a/sysdeps/unix/sysv/linux/mips/bits/siginfo.h b/sysdeps/unix/sysv/linux/mips/bits/siginfo.h index 81a6ec115d..d1418692f3 100644 --- a/sysdeps/unix/sysv/linux/mips/bits/siginfo.h +++ b/sysdeps/unix/sysv/linux/mips/bits/siginfo.h @@ -122,8 +122,10 @@ enum # define SI_ASYNCIO SI_ASYNCIO SI_QUEUE, /* Sent by sigqueue. */ # define SI_QUEUE SI_QUEUE - SI_USER /* Sent by kill, sigsend, raise. */ + SI_USER, /* Sent by kill, sigsend, raise. */ # define SI_USER SI_USER + SI_KERNEL = 0x80 /* Send by kernel. */ +#define SI_KERNEL SI_KERNEL }; |