diff options
Diffstat (limited to 'include/asm-mips/siginfo.h')
-rw-r--r-- | include/asm-mips/siginfo.h | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/include/asm-mips/siginfo.h b/include/asm-mips/siginfo.h index 2cf7fd22e..eca5b65dd 100644 --- a/include/asm-mips/siginfo.h +++ b/include/asm-mips/siginfo.h @@ -1,3 +1,11 @@ +/* $Id: siginfo.h,v 1.4 1998/08/28 16:23:06 ralf Exp $ + * + * This file is subject to the terms and conditions of the GNU General Public + * License. See the file "COPYING" in the main directory of this archive + * for more details. + * + * Copyright (C) 1998 by Ralf Baechle + */ #ifndef __ASM_MIPS_SIGINFO_H #define __ASM_MIPS_SIGINFO_H @@ -84,9 +92,10 @@ typedef struct siginfo { #define SI_USER 0 /* sent by kill, sigsend, raise */ #define SI_KERNEL 0x80 /* sent by the kernel from somewhere */ #define SI_QUEUE -1 /* sent by sigqueue */ -#define SI_TIMER -2 /* sent by timer expiration */ -#define SI_MESGQ -3 /* sent by real time mesq state change */ -#define SI_ASYNCIO -4 /* sent by AIO completion */ +#define SI_ASYNCIO -2 /* sent by AIO completion */ +#define SI_TIMER -3 /* sent by timer expiration */ +#define SI_MESGQ -4 /* sent by real time mesq state change */ +#define SI_SIGIO -5 /* sent by queued SIGIO */ #define SI_FROMUSER(siptr) ((siptr)->si_code <= 0) #define SI_FROMKERNEL(siptr) ((siptr)->si_code > 0) |