Home | History | Annotate | Download | only in clinic

Lines Matching defs:signal

2548 "kill($module, pid, signal, /)\n"
2551 "Kill a process with a signal.");
2557 os_kill_impl(PyObject *module, pid_t pid, Py_ssize_t signal);
2564 Py_ssize_t signal;
2567 &pid, &signal)) {
2570 return_value = os_kill_impl(module, pid, signal);
2581 "killpg($module, pgid, signal, /)\n"
2584 "Kill a process group with a signal.");
2590 os_killpg_impl(PyObject *module, pid_t pgid, int signal);
2597 int signal;
2600 &pgid, &signal)) {
2603 return_value = os_killpg_impl(module, pgid, signal);
4531 "Return True if the process returning status was terminated by a signal.");
4648 "Return the signal that terminated the process that provided the status value.");
4687 "Return the signal that stopped the process that provided the status value.");