Lines Matching defs:setsid
2227 " setpgroup=<unrepresentable>, resetids=False, setsid=False,\n"
2245 " setsid\n"
2260 PyObject *setpgroup, int resetids, int setsid,
2268 static const char * const _keywords[] = {"", "", "", "file_actions", "setpgroup", "resetids", "setsid", "setsigmask", "setsigdef", "scheduler", NULL};
2278 int setsid = 0;
2317 setsid = _PyLong_AsInt(args[6]);
2318 if (setsid == -1 && PyErr_Occurred()) {
2339 return_value = os_posix_spawn_impl(module, &path, argv, env, file_actions, setpgroup, resetids, setsid, setsigmask, setsigdef, scheduler);
2354 " setpgroup=<unrepresentable>, resetids=False, setsid=False,\n"
2372 " setsid\n"
2387 PyObject *setpgroup, int resetids, int setsid,
2395 static const char * const _keywords[] = {"", "", "", "file_actions", "setpgroup", "resetids", "setsid", "setsigmask", "setsigdef", "scheduler", NULL};
2405 int setsid = 0;
2444 setsid = _PyLong_AsInt(args[6]);
2445 if (setsid == -1 && PyErr_Occurred()) {
2466 return_value = os_posix_spawnp_impl(module, &path, argv, env, file_actions, setpgroup, resetids, setsid, setsigmask, setsigdef, scheduler);
4399 "setsid($module, /)\n"
4402 "Call the system call setsid().");
4405 {"setsid", (PyCFunction)os_setsid, METH_NOARGS, os_setsid__doc__},