Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions Doc/library/signal.rst
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,12 @@ The variables defined in the :mod:`signal` module are:

.. availability:: Unix.

.. data:: SIGPROF

Profiling timer expired.

.. availability:: Unix.

.. data:: SIGQUIT

Terminal quit signal.
Expand All @@ -215,6 +221,10 @@ The variables defined in the :mod:`signal` module are:

Segmentation fault: invalid memory reference.

.. data:: SIGSTOP

Stop executing (cannot be caught or ignored).

.. data:: SIGSTKFLT

Stack fault on coprocessor. The Linux kernel does not raise this signal: it
Expand Down Expand Up @@ -243,6 +253,12 @@ The variables defined in the :mod:`signal` module are:

.. availability:: Unix.

.. data:: SIGVTALRM

Virtual timer expired.

.. availability:: Unix.

.. data:: SIGWINCH

Window resize signal.
Expand Down
Loading