Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
6fc79bf8
Kaydet (Commit)
6fc79bf8
authored
Eki 22, 2013
tarafından
Christian Heimes
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #19324: Expose Linux-specific constants in resource module
üst
d1d7576f
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
80 additions
and
0 deletions
+80
-0
resource.rst
Doc/library/resource.rst
+46
-0
test_resource.py
Lib/test/test_resource.py
+10
-0
NEWS
Misc/NEWS
+2
-0
resource.c
Modules/resource.c
+22
-0
No files found.
Doc/library/resource.rst
Dosyayı görüntüle @
6fc79bf8
...
...
@@ -151,6 +151,52 @@ platform.
The maximum area (in bytes) of address space which may be taken by the process.
.. data:: RLIMIT_MSGQUEUE
The number of bytes that can be allocated for POSIX message queues.
Availability: Linux 2.6.8 or later.
.. versionadded:: 3.4
.. data:: RLIMIT_NICE
The ceiling for the process's nice level (calculated as 20 - rlim_cur).
Availability: Linux 2.6.12 or later.
.. versionadded:: 3.4
.. data:: RLIMIT_RTPRIO
The ceiling of the real-time priority.
Availability: Linux 2.6.12 or later.
.. versionadded:: 3.4
.. data:: RLIMIT_RTTIME
The time limit (in microseconds) on CPU time that a process can spend
under real-time scheduling without making a blocking syscall.
Availability: Linux 2.6.25 or later.
.. versionadded:: 3.4
.. data:: RLIMIT_SIGPENDING
The number of signals which the process may queue.
Availability: Linux 2.6.8 or later.
.. versionadded:: 3.4
Resource Usage
--------------
...
...
Lib/test/test_resource.py
Dosyayı görüntüle @
6fc79bf8
import
sys
import
unittest
from
test
import
support
import
time
...
...
@@ -129,6 +130,15 @@ class ResourceTest(unittest.TestCase):
self
.
assertIsInstance
(
pagesize
,
int
)
self
.
assertGreaterEqual
(
pagesize
,
0
)
@unittest.skipUnless
(
sys
.
platform
==
'linux'
,
'test requires Linux'
)
def
test_linux_constants
(
self
):
self
.
assertIsInstance
(
resource
.
RLIMIT_MSGQUEUE
,
int
)
self
.
assertIsInstance
(
resource
.
RLIMIT_NICE
,
int
)
self
.
assertIsInstance
(
resource
.
RLIMIT_RTPRIO
,
int
)
self
.
assertIsInstance
(
resource
.
RLIMIT_RTTIME
,
int
)
self
.
assertIsInstance
(
resource
.
RLIMIT_SIGPENDING
,
int
)
def
test_main
(
verbose
=
None
):
support
.
run_unittest
(
ResourceTest
)
...
...
Misc/NEWS
Dosyayı görüntüle @
6fc79bf8
...
...
@@ -19,6 +19,8 @@ Core and Builtins
Library
-------
- Issue #19324: Expose Linux-specific constants in resource module.
- Issue #17400: ipaddress should make it easy to identify rfc6598 addresses.
- Load SSL'
s
error
strings
in
hashlib
.
...
...
Modules/resource.c
Dosyayı görüntüle @
6fc79bf8
...
...
@@ -326,6 +326,28 @@ PyInit_resource(void)
PyModule_AddIntMacro
(
m
,
RLIMIT_SBSIZE
);
#endif
/* Linux specific */
#ifdef RLIMIT_MSGQUEUE
PyModule_AddIntMacro
(
m
,
RLIMIT_MSGQUEUE
);
#endif
#ifdef RLIMIT_NICE
PyModule_AddIntMacro
(
m
,
RLIMIT_NICE
);
#endif
#ifdef RLIMIT_RTPRIO
PyModule_AddIntMacro
(
m
,
RLIMIT_RTPRIO
);
#endif
#ifdef RLIMIT_RTTIME
PyModule_AddIntMacro
(
m
,
RLIMIT_RTTIME
);
#endif
#ifdef RLIMIT_SIGPENDING
PyModule_AddIntMacro
(
m
,
RLIMIT_SIGPENDING
);
#endif
/* target */
#ifdef RUSAGE_SELF
PyModule_AddIntMacro
(
m
,
RUSAGE_SELF
);
#endif
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment