forked from lilydjwg/winterpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmysysutil.c
45 lines (37 loc) · 875 Bytes
/
mysysutil.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#include<sys/prctl.h>
#include<Python.h>
static PyObject* subreap(PyObject *self, PyObject *args){
PyObject* pyreaping;
int reaping;
int result;
if (!PyArg_ParseTuple(args, "O!", &PyBool_Type, &pyreaping))
return NULL;
reaping = pyreaping == Py_True;
Py_BEGIN_ALLOW_THREADS
result = prctl(PR_SET_CHILD_SUBREAPER, reaping);
Py_END_ALLOW_THREADS
if(result != 0){
return PyErr_SetFromErrno(PyExc_OSError);
}else{
Py_RETURN_NONE;
}
}
static PyMethodDef mysysutil_methods[] = {
{"subreap", subreap, METH_VARARGS},
{NULL, NULL} /* Sentinel */
};
static PyModuleDef mysysutil = {
PyModuleDef_HEAD_INIT,
"mysysutil",
"My system utils",
-1,
mysysutil_methods,
NULL, NULL, NULL, NULL
};
PyMODINIT_FUNC PyInit_mysysutil(void){
PyObject* m;
m = PyModule_Create(&mysysutil);
if(m == NULL)
return NULL;
return m;
}