diff options
author | David CARLIER <devnexen@gmail.com> | 2021-02-18 15:26:20 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-18 15:26:20 (GMT) |
commit | 7be00ee64a2ced73c00ec855c7265e2ba795213d (patch) | |
tree | 541f872b3d33a7eba61357cb5c24acaf4bc950c2 /Doc/library/resource.rst | |
parent | a3c3ffa68e6fc4524b1149a6a14d56c3a2e9b612 (diff) | |
download | cpython-7be00ee64a2ced73c00ec855c7265e2ba795213d.zip cpython-7be00ee64a2ced73c00ec855c7265e2ba795213d.tar.gz cpython-7be00ee64a2ced73c00ec855c7265e2ba795213d.tar.bz2 |
bpo-42960: Add resource.RLIMIT_KQUEUES constant from FreeBSD (GH-24251)
Diffstat (limited to 'Doc/library/resource.rst')
-rw-r--r-- | Doc/library/resource.rst | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Doc/library/resource.rst b/Doc/library/resource.rst index e4eac43..00ff3b5 100644 --- a/Doc/library/resource.rst +++ b/Doc/library/resource.rst @@ -255,6 +255,14 @@ platform. .. versionadded:: 3.4 +.. data:: RLIMIT_KQUEUES + + The maximum number of kqueues this user id is allowed to create. + + .. availability:: FreeBSD 11 or later. + + .. versionadded:: 3.10 + Resource Usage -------------- |