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
Hide 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:
...
@@ -6,13 +6,6 @@ cdef extern from "<signal.h>" nogil:
ctypedef
int
sig_atomic_t
ctypedef
int
sig_atomic_t
enum
:
SIGABRT
enum
:
SIGFPE
enum
:
SIGILL
enum
:
SIGINT
enum
:
SIGSEGV
enum
:
SIGTERM
sighandler_t
SIG_DFL
sighandler_t
SIG_DFL
sighandler_t
SIG_IGN
sighandler_t
SIG_IGN
sighandler_t
SIG_ERR
sighandler_t
SIG_ERR
...
@@ -20,49 +13,52 @@ cdef extern from "<signal.h>" nogil:
...
@@ -20,49 +13,52 @@ cdef extern from "<signal.h>" nogil:
sighandler_t
signal
(
int
signum
,
sighandler_t
action
)
sighandler_t
signal
(
int
signum
,
sighandler_t
action
)
int
raise_
"raise"
(
int
signum
)
int
raise_
"raise"
(
int
signum
)
# Signals
cdef
extern
from
"<signal.h>"
nogil
:
enum
:
# Program Error
# Program Error
SIGFPE
enum
:
SIGFPE
SIGILL
enum
:
SIGILL
SIGSEGV
enum
:
SIGSEGV
SIGBUS
enum
:
SIGBUS
SIGABRT
enum
:
SIGABRT
SIGIOT
enum
:
SIGIOT
SIGTRAP
enum
:
SIGTRAP
SIGEMT
enum
:
SIGEMT
SIGSYS
enum
:
SIGSYS
SIGSTKFLT
# Termination
# Termination
enum
:
SIGTERM
SIGTERM
enum
:
SIGINT
SIGINT
enum
:
SIGQUIT
SIGQUIT
enum
:
SIGKILL
SIGKILL
enum
:
SIGHUP
SIGHUP
# Alarm
# Alarm
enum
:
SIGALRM
SIGALRM
enum
:
SIGVTALRM
SIGVTALRM
enum
:
SIGPROF
SIGPROF
# Asynchronous I/O
# Asynchronous I/O
enum
:
SIGIO
SIGIO
enum
:
SIGURG
SIGURG
enum
:
SIGPOLL
SIGPOLL
# Job Control
# Job Control
enum
:
SIGCHLD
SIGCHLD
enum
:
SIGCLD
SIGCLD
enum
:
SIGCONT
SIGCONT
enum
:
SIGSTOP
SIGSTOP
enum
:
SIGTSTP
SIGTSTP
enum
:
SIGTTIN
SIGTTIN
enum
:
SIGTTOU
SIGTTOU
# Operation Error
# Operation Error
enum
:
SIGPIPE
SIGPIPE
enum
:
SIGLOST
SIGLOST
enum
:
SIGXCPU
SIGXCPU
enum
:
SIGXFSZ
SIGXFSZ
# Miscellaneous
SIGPWR
enum
:
SIGUSR1
# Miscellaneous
enum
:
SIGUSR2
SIGUSR1
enum
:
SIGWINCH
SIGUSR2
enum
:
SIGINFO
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