summaryrefslogtreecommitdiffstats
path: root/Doc/library/_thread.rst
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2023-11-09 20:02:30 (GMT)
committerGitHub <noreply@github.com>2023-11-09 20:02:30 (GMT)
commit0802fd6c8ee0cacb3ab555dd86e235a5dfab7618 (patch)
treead3f9df8c4fe7cfc83246b7d3040d2876d0553a5 /Doc/library/_thread.rst
parent0c61d028be93c52726972d8d96393cc0cedb1086 (diff)
downloadcpython-0802fd6c8ee0cacb3ab555dd86e235a5dfab7618.zip
cpython-0802fd6c8ee0cacb3ab555dd86e235a5dfab7618.tar.gz
cpython-0802fd6c8ee0cacb3ab555dd86e235a5dfab7618.tar.bz2
gh-81925: Implement native thread ids for kFreeBSD (#111761)
--------- Co-authored-by: Antoine Pitrou <antoine@python.org>
Diffstat (limited to 'Doc/library/_thread.rst')
-rw-r--r--Doc/library/_thread.rst5
1 files changed, 4 insertions, 1 deletions
diff --git a/Doc/library/_thread.rst b/Doc/library/_thread.rst
index d7c61c3..297f50a 100644
--- a/Doc/library/_thread.rst
+++ b/Doc/library/_thread.rst
@@ -120,10 +120,13 @@ This module defines the following constants and functions:
Its value may be used to uniquely identify this particular thread system-wide
(until the thread terminates, after which the value may be recycled by the OS).
- .. availability:: Windows, FreeBSD, Linux, macOS, OpenBSD, NetBSD, AIX, DragonFlyBSD.
+ .. availability:: Windows, FreeBSD, Linux, macOS, OpenBSD, NetBSD, AIX, DragonFlyBSD, GNU/kFreeBSD.
.. versionadded:: 3.8
+ .. versionchanged:: 3.13
+ Added support for GNU/kFreeBSD.
+
.. function:: stack_size([size])