1
0
mirror of https://github.com/cc65/cc65.git synced 2024-09-27 19:55:09 +00:00

Add signal bitmasks

git-svn-id: svn://svn.cc65.org/cc65/trunk@1799 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2002-12-20 21:02:57 +00:00
parent a143f26061
commit a75591573c

View File

@ -34,9 +34,9 @@
; Standard signal handling functions
SIG_IGN = $0000
SIG_ERR = $FFFF
SIG_DFL = $FFFE
SIG_IGN = $0000
SIG_DFL = $0001
; Signal numbers
SIGABRT = 0
@ -45,6 +45,15 @@ SIGILL = 2
SIGINT = 3
SIGSEGV = 4
SIGTERM = 5
SIGCOUNT = 6 ; Number of signals (maximum: 8)
; Signal masks
SIGMASK_ABRT = (1 .SHL SIGABRT)
SIGMASK_FPE = (1 .SHL SIGFPE)
SIGMASK_ILL = (1 .SHL SIGILL)
SIGMASK_INT = (1 .SHL SIGINT)
SIGMASK_SEGV = (1 .SHL SIGSEGV)
SIGMASK_TERM = (1 .SHL SIGTERM)
; Function declarations
.global _signal