summaryrefslogtreecommitdiff
path: root/Doc
diff options
context:
space:
mode:
authorGareth Rees <grees@undo.io>2021-12-13 17:22:43 +0000
committerGitHub <noreply@github.com>2021-12-13 18:22:43 +0100
commita62be77266b1beadd42d4952186332bc0847b7d6 (patch)
treeabd18e3df50cc28a966f85a36b8e475051b203ba /Doc
parent191c431de7d9b23484dd16f67e62c6e85a1fac7f (diff)
downloadcpython-git-a62be77266b1beadd42d4952186332bc0847b7d6.tar.gz
bpo-45643: Add signal.SIGSTKFLT on platforms where this is defined (GH-29266)
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/signal.rst10
1 files changed, 10 insertions, 0 deletions
diff --git a/Doc/library/signal.rst b/Doc/library/signal.rst
index 63821866a0..abc30362da 100644
--- a/Doc/library/signal.rst
+++ b/Doc/library/signal.rst
@@ -197,6 +197,16 @@ The variables defined in the :mod:`signal` module are:
Segmentation fault: invalid memory reference.
+.. data:: SIGSTKFLT
+
+ Stack fault on coprocessor. The Linux kernel does not raise this signal: it
+ can only be raised in user space.
+
+ .. availability:: Linux, on architectures where the signal is available. See
+ the man page :manpage:`signal(7)` for further information.
+
+ .. versionadded:: 3.11
+
.. data:: SIGTERM
Termination signal.