Lines Matching defs:signal
3630 "kill($module, pid, signal, /)\n"
3633 "Kill a process with a signal.");
3639 os_kill_impl(PyObject *module, pid_t pid, Py_ssize_t signal);
3646 Py_ssize_t signal;
3649 &pid, &signal)) {
3652 return_value = os_kill_impl(module, pid, signal);
3663 "killpg($module, pgid, signal, /)\n"
3666 "Kill a process group with a signal.");
3672 os_killpg_impl(PyObject *module, pid_t pgid, int signal);
3679 int signal;
3682 &pgid, &signal)) {
3685 return_value = os_killpg_impl(module, pgid, signal);
6680 "Return True if the process returning status was terminated by a signal.");
6812 "Return the signal that terminated the process that provided the status value.");
6856 "Return the signal that stopped the process that provided the status value.");