mirror of
https://github.com/Zygo/bees.git
synced 2025-05-17 13:25:45 +02:00
process: SIGUNUSED is deprecated
SIGUNUSED is not defined in many environments (it seems to be defined in only one I've tried so far). Hide the reference with #ifdef. Fixes: https://github.com/Zygo/bees/issues/94 Signed-off-by: Zygo Blaxell <bees@furryterror.org>
This commit is contained in:
parent
843f78c380
commit
4a1971bce5
@ -203,7 +203,9 @@ namespace crucible {
|
||||
NTOA_TABLE_ENTRY_ENUM(SIGLOST),
|
||||
#endif
|
||||
NTOA_TABLE_ENTRY_ENUM(SIGWINCH),
|
||||
#ifdef SIGUNUSED
|
||||
NTOA_TABLE_ENTRY_ENUM(SIGUNUSED),
|
||||
#endif
|
||||
|
||||
// realtime
|
||||
NTOA_TABLE_ENTRY_ENUM(SIGRTMIN),
|
||||
|
Loading…
x
Reference in New Issue
Block a user