Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(840)

Side by Side Diff: third_party/cython/src/Cython/Includes/libc/signal.pxd

Issue 385073004: Adding cython v0.20.2 in third-party. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Reference cython dev list thread. Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 # 7.14 Signal handling <signal.h>
2
3 ctypedef void (*sighandler_t)(int SIGNUM) nogil
4
5 cdef extern from "signal.h" nogil:
6
7 ctypedef int sig_atomic_t
8
9 enum: SIGABRT
10 enum: SIGFPE
11 enum: SIGILL
12 enum: SIGINT
13 enum: SIGSEGV
14 enum: SIGTERM
15
16 sighandler_t SIG_DFL
17 sighandler_t SIG_IGN
18 sighandler_t SIG_ERR
19
20 sighandler_t signal (int signum, sighandler_t action)
21 int raise_"raise" (int signum)
22
23
24 cdef extern from "signal.h" nogil:
25
26 # Program Error
27 enum: SIGFPE
28 enum: SIGILL
29 enum: SIGSEGV
30 enum: SIGBUS
31 enum: SIGABRT
32 enum: SIGIOT
33 enum: SIGTRAP
34 enum: SIGEMT
35 enum: SIGSYS
36 # Termination
37 enum: SIGTERM
38 enum: SIGINT
39 enum: SIGQUIT
40 enum: SIGKILL
41 enum: SIGHUP
42 # Alarm
43 enum: SIGALRM
44 enum: SIGVTALRM
45 enum: SIGPROF
46 # Asynchronous I/O
47 enum: SIGIO
48 enum: SIGURG
49 enum: SIGPOLL
50 # Job Control
51 enum: SIGCHLD
52 enum: SIGCLD
53 enum: SIGCONT
54 enum: SIGSTOP
55 enum: SIGTSTP
56 enum: SIGTTIN
57 enum: SIGTTOU
58 # Operation Error
59 enum: SIGPIPE
60 enum: SIGLOST
61 enum: SIGXCPU
62 enum: SIGXFSZ
63 # Miscellaneous
64 enum: SIGUSR1
65 enum: SIGUSR2
66 enum: SIGWINCH
67 enum: SIGINFO
68
OLDNEW
« no previous file with comments | « third_party/cython/src/Cython/Includes/libc/setjmp.pxd ('k') | third_party/cython/src/Cython/Includes/libc/stddef.pxd » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698