diff options
author | Andreas Jaeger <aj@suse.de> | 2003-05-22 02:26:29 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2003-05-22 02:26:29 +0000 |
commit | 3087604fc9ebda247c295e85a241e42dd02b77e8 (patch) | |
tree | d4aeb0fe67f913fd3da65c92dd8144d2c730cd99 /sysdeps | |
parent | cca4aa58b57d34c33b7a066651419a0b19a4d674 (diff) | |
download | glibc-3087604fc9ebda247c295e85a241e42dd02b77e8.tar.gz glibc-3087604fc9ebda247c295e85a241e42dd02b77e8.tar.xz glibc-3087604fc9ebda247c295e85a241e42dd02b77e8.zip |
2003-05-20 Guido Guenther <agx@sigxcpu.org>
* sysdeps/unix/sysv/linux/mips/bits/siginfo.h: Change SI_ASYNCNL to -60 and define SI_TKILL. 2003-05-20 Guido Guenther <agx@sigxcpu.org> * sysdeps/unix/sysv/linux/mips/bits/siginfo.h: Change SI_ASYNCNL to -60 and define SI_TKILL.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/unix/sysv/linux/mips/bits/siginfo.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/mips/bits/siginfo.h b/sysdeps/unix/sysv/linux/mips/bits/siginfo.h index 7d5cfa9c3d..629a055640 100644 --- a/sysdeps/unix/sysv/linux/mips/bits/siginfo.h +++ b/sysdeps/unix/sysv/linux/mips/bits/siginfo.h @@ -1,5 +1,5 @@ /* siginfo_t, sigevent and constants. Linux/MIPS version. - Copyright (C) 1997, 1998, 2000, 2001, 2002 Free Software Foundation, Inc. + Copyright (C) 1997, 1998, 2000, 2001, 2002, 2003 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -119,8 +119,10 @@ typedef struct siginfo signals. */ enum { - SI_ASYNCNL = -6, /* Sent by asynch name lookup completion. */ + SI_ASYNCNL = -60, /* Sent by asynch name lookup completion. */ # define SI_ASYNCNL SI_ASYNCNL + SI_TKILL = -6, /* Sent by tkill. */ +# define SI_TKILL SI_TKILL SI_SIGIO, /* Sent by queued SIGIO. */ # define SI_SIGIO SI_SIGIO SI_MESGQ, /* Sent by real time mesq state change. */ |