Skip to content

Commit 302f19d

Browse files
authored
gh-139843: Document signals (SIGSTOP, SIGVTALRM, SIGPROF) to fix sphinx references (GH-139896)
1 parent 1c598e0 commit 302f19d

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

Doc/library/signal.rst

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,12 @@ The variables defined in the :mod:`signal` module are:
205205

206206
.. availability:: Unix.
207207

208+
.. data:: SIGPROF
209+
210+
Profiling timer expired.
211+
212+
.. availability:: Unix.
213+
208214
.. data:: SIGQUIT
209215

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

216222
Segmentation fault: invalid memory reference.
217223

224+
.. data:: SIGSTOP
225+
226+
Stop executing (cannot be caught or ignored).
227+
218228
.. data:: SIGSTKFLT
219229

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

244254
.. availability:: Unix.
245255

256+
.. data:: SIGVTALRM
257+
258+
Virtual timer expired.
259+
260+
.. availability:: Unix.
261+
246262
.. data:: SIGWINCH
247263

248264
Window resize signal.

0 commit comments

Comments
 (0)