diff options
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/signal.rst | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Doc/library/signal.rst b/Doc/library/signal.rst index 5c48c88..ac6cad9 100644 --- a/Doc/library/signal.rst +++ b/Doc/library/signal.rst @@ -237,6 +237,13 @@ The :mod:`signal` module defines the following functions: :func:`sigpending`. +.. function:: raise_signal(signum) + + Sends a signal to the calling process. Returns nothing. + + .. versionadded:: 3.8 + + .. function:: pthread_kill(thread_id, signalnum) Send the signal *signalnum* to the thread *thread_id*, another thread in the |