Complement SIGEV_* enums with macros

* include/cygwin/signal.h (SIGEV_*): Add macros.

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
This commit is contained in:
Ken Brown 2015-06-23 10:39:06 +02:00 committed by Corinna Vinschen
parent f4abb28ea8
commit d04fd9d5f7
2 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2015-06-23 Ken Brown <kbrown@cornell.edu>
* include/cygwin/signal.h (SIGEV_*): Add macros.
2015-06-22 Corinna Vinschen <corinna@vinschen.de>
* exceptions.cc (_cygtls::call_signal_handler): Drop pushing a register

View File

@ -311,6 +311,10 @@ enum
perform notification */
};
#define SIGEV_SIGNAL SIGEV_SIGNAL
#define SIGEV_NONE SIGEV_NONE
#define SIGEV_THREAD SIGEV_THREAD
#if __WORDSIZE == 64
typedef __uint64_t sigset_t;
#else