Home
last modified time | relevance | path

Searched refs:setsigmask (Results 1 – 5 of 5) sorted by relevance

/external/python/cpython3/Lib/test/
Dtest_posix.py1644 setsigmask=[signal.SIGUSR1]
1652 os.environ, setsigmask=34)
1656 os.environ, setsigmask=["j"])
1660 os.environ, setsigmask=[signal.NSIG,
/external/python/cpython3/Modules/clinic/
Dposixmodule.c.h2245 PyObject *setsigmask, PyObject *setsigdef,
2263 PyObject *setsigmask = NULL; in os_posix_spawn() local
2320 setsigmask = args[7]; in os_posix_spawn()
2333 …l(module, &path, argv, env, file_actions, setpgroup, resetids, setsid, setsigmask, setsigdef, sche… in os_posix_spawn()
2382 PyObject *setsigmask, PyObject *setsigdef,
2400 PyObject *setsigmask = NULL; in os_posix_spawnp() local
2457 setsigmask = args[7]; in os_posix_spawnp()
2470 …l(module, &path, argv, env, file_actions, setpgroup, resetids, setsid, setsigmask, setsigdef, sche… in os_posix_spawnp()
/external/python/cpython3/Modules/
Dposixmodule.c5755 int resetids, int setsid, PyObject *setsigmask, in parse_posix_spawn_flags() argument
5806 if (setsigmask) { in parse_posix_spawn_flags()
5808 if (!_Py_Sigset_Converter(setsigmask, &set)) { in parse_posix_spawn_flags()
6000 PyObject *setpgroup, int resetids, int setsid, PyObject *setsigmask, in py_posix_spawn() argument
6073 setsigmask, setsigdef, scheduler, &attr)) { in py_posix_spawn()
6157 PyObject *setsigmask, PyObject *setsigdef, in os_posix_spawn_impl() argument
6162 setpgroup, resetids, setsid, setsigmask, setsigdef, in os_posix_spawn_impl()
6203 PyObject *setsigmask, PyObject *setsigdef, in os_posix_spawnp_impl() argument
6208 setpgroup, resetids, setsid, setsigmask, setsigdef, in os_posix_spawnp_impl()
/external/python/cpython3/Doc/library/
Dos.rst3688 setpgroup=None, resetids=False, setsid=False, setsigmask=(), \
3751 The *setsigmask* argument will set the signal mask to the signal set
3774 setpgroup=None, resetids=False, setsid=False, setsigmask=(), \
/external/python/cpython3/Misc/NEWS.d/
D3.8.0a1.rst1274 Added support for the `setpgroup`, `resetids`, `setsigmask`, `setsigdef` and