Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cython
Commits
d2827c99
Commit
d2827c99
authored
Oct 06, 2017
by
Jeroen Demeyer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add some missing signals.
parent
48724f5f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
49 additions
and
53 deletions
+49
-53
Cython/Includes/libc/signal.pxd
Cython/Includes/libc/signal.pxd
+49
-53
No files found.
Cython/Includes/libc/signal.pxd
View file @
d2827c99
...
...
@@ -6,13 +6,6 @@ cdef extern from "<signal.h>" nogil:
ctypedef
int
sig_atomic_t
enum
:
SIGABRT
enum
:
SIGFPE
enum
:
SIGILL
enum
:
SIGINT
enum
:
SIGSEGV
enum
:
SIGTERM
sighandler_t
SIG_DFL
sighandler_t
SIG_IGN
sighandler_t
SIG_ERR
...
...
@@ -20,49 +13,52 @@ cdef extern from "<signal.h>" nogil:
sighandler_t
signal
(
int
signum
,
sighandler_t
action
)
int
raise_
"raise"
(
int
signum
)
cdef
extern
from
"<signal.h>"
nogil
:
# Signals
enum
:
# Program Error
enum
:
SIGFPE
enum
:
SIGILL
enum
:
SIGSEGV
enum
:
SIGBUS
enum
:
SIGABRT
enum
:
SIGIOT
enum
:
SIGTRAP
enum
:
SIGEMT
enum
:
SIGSYS
SIGFPE
SIGILL
SIGSEGV
SIGBUS
SIGABRT
SIGIOT
SIGTRAP
SIGEMT
SIGSYS
SIGSTKFLT
# Termination
enum
:
SIGTERM
enum
:
SIGINT
enum
:
SIGQUIT
enum
:
SIGKILL
enum
:
SIGHUP
SIGTERM
SIGINT
SIGQUIT
SIGKILL
SIGHUP
# Alarm
enum
:
SIGALRM
enum
:
SIGVTALRM
enum
:
SIGPROF
SIGALRM
SIGVTALRM
SIGPROF
# Asynchronous I/O
enum
:
SIGIO
enum
:
SIGURG
enum
:
SIGPOLL
SIGIO
SIGURG
SIGPOLL
# Job Control
enum
:
SIGCHLD
enum
:
SIGCLD
enum
:
SIGCONT
enum
:
SIGSTOP
enum
:
SIGTSTP
enum
:
SIGTTIN
enum
:
SIGTTOU
SIGCHLD
SIGCLD
SIGCONT
SIGSTOP
SIGTSTP
SIGTTIN
SIGTTOU
# Operation Error
enum
:
SIGPIPE
enum
:
SIGLOST
enum
:
SIGXCPU
enum
:
SIGXFSZ
SIGPIPE
SIGLOST
SIGXCPU
SIGXFSZ
SIGPWR
# Miscellaneous
enum
:
SIGUSR1
enum
:
SIGUSR2
enum
:
SIGWINCH
enum
:
SIGINFO
SIGUSR1
SIGUSR2
SIGWINCH
SIGINFO
# Real-time signals
SIGRTMIN
SIGRTMAX
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment