signal.h: add missing SIGTRAP si_codes

TRAP_BRANCH and TRAP_HWBKPT new in linux commit
da654b74bda14c45a7d98c731bf3c1a43b6b74e2
This commit is contained in:
Szabolcs Nagy 2017-11-26 23:20:38 +00:00 committed by Rich Felker
parent ebd8ef50d5
commit 38e81ddc04
1 changed files with 2 additions and 0 deletions

View File

@ -231,6 +231,8 @@ int sigrelse(int);
void (*sigset(int, void (*)(int)))(int);
#define TRAP_BRKPT 1
#define TRAP_TRACE 2
#define TRAP_BRANCH 3
#define TRAP_HWBKPT 4
#define POLL_IN 1
#define POLL_OUT 2
#define POLL_MSG 3