FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python/Python/sigcheck.c at master · java66liu/python · GitHub
java66liu
/
python
Public
forked from
glix/python
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
python
/
Python
/
sigcheck.c
Copy path
More file actions
More file actions
Latest commit
History
History
History
19 lines (16 loc) · 529 Bytes
Breadcrumbs
python
/
Python
/
sigcheck.c
Copy path
File metadata and controls
19 lines (16 loc) · 529 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* Sigcheck is similar to intrcheck() but sets an exception when an
interrupt occurs. It can't be in the intrcheck.c file since that
file (and the whole directory it is in) doesn't know about objects
or exceptions. It can't be in errors.c because it can be
overridden (at link time) by a more powerful version implemented in
signalmodule.c. */
#include
"Python.h"
/* ARGSUSED */
int
PyErr_CheckSignals
(
void
)
{
if
(!
PyOS_InterruptOccurred
())
return
0
;
PyErr_SetNone
(
PyExc_KeyboardInterrupt
);
return
-1
;
}
Back
|
FazBrowse Home
|
New Git URL