Update siginfo codes

* signal.c (siginfo_codes): Add SI_DETHREAD.
This commit is contained in:
Дмитрий Левин 2014-03-11 01:57:02 +00:00
parent 4a524dbbdf
commit b9d4d21a61

View File

@ -376,6 +376,7 @@ print_sigset_addr_len(struct tcb *tcp, long addr, long len)
#define SI_ASYNCIO -4 /* sent by AIO completion */
#define SI_SIGIO -5 /* sent by SIGIO */
#define SI_TKILL -6 /* sent by tkill */
#define SI_DETHREAD -7 /* sent by execve killing subsidiary threads */
#define SI_ASYNCNL -60 /* sent by asynch name lookup completion */
#endif
@ -408,6 +409,9 @@ static const struct xlat siginfo_codes[] = {
#ifdef SI_TKILL
XLAT(SI_TKILL),
#endif
#ifdef SI_DETHREAD
XLAT(SI_DETHREAD),
#endif
#ifdef SI_ASYNCNL
XLAT(SI_ASYNCNL),
#endif