Lines Matching defs:options
3941 "wait3($module, /, options)\n"
3953 os_wait3_impl(PyObject *module, int options);
3959 static const char * const _keywords[] = {"options", NULL};
3962 int options;
3968 options = _PyLong_AsInt(args[0]);
3969 if (options == -1 && PyErr_Occurred()) {
3972 return_value = os_wait3_impl(module, options);
3983 "wait4($module, /, pid, options)\n"
3995 os_wait4_impl(PyObject *module, pid_t pid, int options);
4001 static const char * const _keywords[] = {"pid", "options", NULL};
4004 int options;
4007 &pid, &options)) {
4010 return_value = os_wait4_impl(module, pid, options);
4021 "waitid($module, idtype, id, options, /)\n"
4030 " options\n"
4041 os_waitid_impl(PyObject *module, idtype_t idtype, id_t id, int options);
4049 int options;
4052 &idtype, &id, &options)) {
4055 return_value = os_waitid_impl(module, idtype, id, options);
4066 "waitpid($module, pid, options, /)\n"
4074 "The options argument is ignored on Windows.");
4080 os_waitpid_impl(PyObject *module, pid_t pid, int options);
4087 int options;
4090 &pid, &options)) {
4093 return_value = os_waitpid_impl(module, pid, options);
4104 "waitpid($module, pid, options, /)\n"
4112 "The options argument is ignored on Windows.");
4118 os_waitpid_impl(PyObject *module, intptr_t pid, int options);
4125 int options;
4128 &pid, &options)) {
4131 return_value = os_waitpid_impl(module, pid, options);