1
0
Fork 0
python-docs-fr/library/resource.po

578 lines
16 KiB
Plaintext
Raw Normal View History

2018-07-04 09:06:45 +00:00
# Copyright (C) 2001-2018, Python Software Foundation
2018-07-04 09:08:42 +00:00
# For licence information, see README file.
2016-10-30 09:46:26 +00:00
#
msgid ""
msgstr ""
2019-12-05 22:15:54 +00:00
"Project-Id-Version: Python 3\n"
2016-10-30 09:46:26 +00:00
"Report-Msgid-Bugs-To: \n"
2020-05-24 14:31:50 +00:00
"POT-Creation-Date: 2020-05-23 11:38+0200\n"
2018-11-29 20:20:58 +00:00
"PO-Revision-Date: 2018-11-29 21:18+0100\n"
2016-10-30 09:46:26 +00:00
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
2018-07-04 09:14:25 +00:00
"Language-Team: FRENCH <traductions@lists.afpy.org>\n"
2017-05-23 22:40:56 +00:00
"Language: fr\n"
2016-10-30 09:46:26 +00:00
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../Doc/library/resource.rst:2
msgid ":mod:`resource` --- Resource usage information"
msgstr ""
#: ../Doc/library/resource.rst:13
msgid ""
"This module provides basic mechanisms for measuring and controlling system "
"resources utilized by a program."
msgstr ""
#: ../Doc/library/resource.rst:16
msgid ""
"Symbolic constants are used to specify particular system resources and to "
"request usage information about either the current process or its children."
msgstr ""
#: ../Doc/library/resource.rst:19
msgid "An :exc:`OSError` is raised on syscall failure."
msgstr ""
#: ../Doc/library/resource.rst:24
msgid "A deprecated alias of :exc:`OSError`."
msgstr ""
#: ../Doc/library/resource.rst:26
msgid "Following :pep:`3151`, this class was made an alias of :exc:`OSError`."
msgstr ""
#: ../Doc/library/resource.rst:31
msgid "Resource Limits"
msgstr ""
#: ../Doc/library/resource.rst:33
msgid ""
"Resources usage can be limited using the :func:`setrlimit` function "
"described below. Each resource is controlled by a pair of limits: a soft "
"limit and a hard limit. The soft limit is the current limit, and may be "
"lowered or raised by a process over time. The soft limit can never exceed "
"the hard limit. The hard limit can be lowered to any value greater than the "
"soft limit, but not raised. (Only processes with the effective UID of the "
"super-user can raise a hard limit.)"
msgstr ""
#: ../Doc/library/resource.rst:41
msgid ""
"The specific resources that can be limited are system dependent. They are "
"described in the :manpage:`getrlimit(2)` man page. The resources listed "
"below are supported when the underlying operating system supports them; "
"resources which cannot be checked or controlled by the operating system are "
"not defined in this module for those platforms."
msgstr ""
#: ../Doc/library/resource.rst:50
msgid "Constant used to represent the limit for an unlimited resource."
msgstr ""
#: ../Doc/library/resource.rst:55
msgid ""
"Returns a tuple ``(soft, hard)`` with the current soft and hard limits of "
"*resource*. Raises :exc:`ValueError` if an invalid resource is specified, "
"or :exc:`error` if the underlying system call fails unexpectedly."
msgstr ""
#: ../Doc/library/resource.rst:62
msgid ""
"Sets new limits of consumption of *resource*. The *limits* argument must be "
"a tuple ``(soft, hard)`` of two integers describing the new limits. A value "
"of :data:`~resource.RLIM_INFINITY` can be used to request a limit that is "
"unlimited."
msgstr ""
#: ../Doc/library/resource.rst:67
msgid ""
"Raises :exc:`ValueError` if an invalid resource is specified, if the new "
"soft limit exceeds the hard limit, or if a process tries to raise its hard "
"limit. Specifying a limit of :data:`~resource.RLIM_INFINITY` when the hard "
"or system limit for that resource is not unlimited will result in a :exc:"
"`ValueError`. A process with the effective UID of super-user can request "
"any valid limit value, including unlimited, but :exc:`ValueError` will still "
"be raised if the requested limit exceeds the system imposed limit."
msgstr ""
#: ../Doc/library/resource.rst:76
msgid ""
"``setrlimit`` may also raise :exc:`error` if the underlying system call "
"fails."
msgstr ""
2019-09-04 09:35:23 +00:00
#: ../Doc/library/resource.rst:79
msgid "VxWorks only supports setting :data:`RLIMIT_NOFILE`."
msgstr ""
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:81
msgid ""
"Raises an :ref:`auditing event <auditing>` ``resource.setrlimit`` with "
"arguments ``resource``, ``limits``."
msgstr ""
#: ../Doc/library/resource.rst:86
2016-10-30 09:46:26 +00:00
msgid ""
"Combines :func:`setrlimit` and :func:`getrlimit` in one function and "
"supports to get and set the resources limits of an arbitrary process. If "
"*pid* is 0, then the call applies to the current process. *resource* and "
"*limits* have the same meaning as in :func:`setrlimit`, except that *limits* "
"is optional."
msgstr ""
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:92
2016-10-30 09:46:26 +00:00
msgid ""
"When *limits* is not given the function returns the *resource* limit of the "
"process *pid*. When *limits* is given the *resource* limit of the process is "
"set and the former resource limit is returned."
msgstr ""
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:96
2016-10-30 09:46:26 +00:00
msgid ""
"Raises :exc:`ProcessLookupError` when *pid* can't be found and :exc:"
"`PermissionError` when the user doesn't have ``CAP_SYS_RESOURCE`` for the "
"process."
msgstr ""
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:101
msgid ""
"Raises an :ref:`auditing event <auditing>` ``resource.prlimit`` with "
"arguments ``pid``, ``resource``, ``limits``."
msgstr ""
#: ../Doc/library/resource.rst:103
2018-11-29 15:13:39 +00:00
msgid ""
":ref:`Availability <availability>`: Linux 2.6.36 or later with glibc 2.13 or "
"later."
2016-10-30 09:46:26 +00:00
msgstr ""
2018-11-29 20:20:58 +00:00
":ref:`Disponibilité <availability>` : Linux 2.6.36 et ultérieures avec "
"*glibc* 2.13 et ultérieures."
2016-10-30 09:46:26 +00:00
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:107
2016-10-30 09:46:26 +00:00
msgid ""
"These symbols define resources whose consumption can be controlled using "
"the :func:`setrlimit` and :func:`getrlimit` functions described below. The "
"values of these symbols are exactly the constants used by C programs."
msgstr ""
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:111
2016-10-30 09:46:26 +00:00
msgid ""
"The Unix man page for :manpage:`getrlimit(2)` lists the available resources. "
"Note that not all systems use the same symbol or same value to denote the "
"same resource. This module does not attempt to mask platform differences "
"--- symbols not defined for a platform will not be available from this "
"module on that platform."
msgstr ""
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:120
2016-10-30 09:46:26 +00:00
msgid ""
"The maximum size (in bytes) of a core file that the current process can "
"create. This may result in the creation of a partial core file if a larger "
"core would be required to contain the entire process image."
msgstr ""
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:127
2016-10-30 09:46:26 +00:00
msgid ""
"The maximum amount of processor time (in seconds) that a process can use. If "
"this limit is exceeded, a :const:`SIGXCPU` signal is sent to the process. "
"(See the :mod:`signal` module documentation for information about how to "
"catch this signal and do something useful, e.g. flush open files to disk.)"
msgstr ""
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:135
2016-10-30 09:46:26 +00:00
msgid "The maximum size of a file which the process may create."
msgstr ""
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:140
2016-10-30 09:46:26 +00:00
msgid "The maximum size (in bytes) of the process's heap."
msgstr ""
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:145
2016-10-30 09:46:26 +00:00
msgid ""
"The maximum size (in bytes) of the call stack for the current process. This "
"only affects the stack of the main thread in a multi-threaded process."
msgstr ""
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:151
2016-10-30 09:46:26 +00:00
msgid ""
"The maximum resident set size that should be made available to the process."
msgstr ""
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:156
2016-10-30 09:46:26 +00:00
msgid "The maximum number of processes the current process may create."
msgstr ""
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:161
2016-10-30 09:46:26 +00:00
msgid "The maximum number of open file descriptors for the current process."
msgstr ""
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:166
2016-10-30 09:46:26 +00:00
msgid "The BSD name for :const:`RLIMIT_NOFILE`."
msgstr ""
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:171
2016-10-30 09:46:26 +00:00
msgid "The maximum address space which may be locked in memory."
msgstr ""
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:176
2016-10-30 09:46:26 +00:00
msgid "The largest area of mapped memory which the process may occupy."
msgstr ""
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:181
2016-10-30 09:46:26 +00:00
msgid ""
"The maximum area (in bytes) of address space which may be taken by the "
"process."
msgstr ""
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:186
2016-10-30 09:46:26 +00:00
msgid "The number of bytes that can be allocated for POSIX message queues."
msgstr ""
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:189 ../Doc/library/resource.rst:226
2018-11-29 15:13:39 +00:00
msgid ":ref:`Availability <availability>`: Linux 2.6.8 or later."
msgstr ":ref:`Disponibilité <availability>` : Linux 2.6.8 et ultérieures."
2016-10-30 09:46:26 +00:00
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:195
2016-10-30 09:46:26 +00:00
msgid "The ceiling for the process's nice level (calculated as 20 - rlim_cur)."
msgstr ""
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:198 ../Doc/library/resource.rst:207
2018-11-29 15:13:39 +00:00
msgid ":ref:`Availability <availability>`: Linux 2.6.12 or later."
msgstr ":ref:`Disponibilité <availability>` : Linux 2.6.12 et ultérieures."
2016-10-30 09:46:26 +00:00
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:204
2016-10-30 09:46:26 +00:00
msgid "The ceiling of the real-time priority."
msgstr ""
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:213
2016-10-30 09:46:26 +00:00
msgid ""
"The time limit (in microseconds) on CPU time that a process can spend under "
"real-time scheduling without making a blocking syscall."
msgstr ""
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:217
2018-11-29 15:13:39 +00:00
msgid ":ref:`Availability <availability>`: Linux 2.6.25 or later."
msgstr ":ref:`Disponibilité <availability>` : Linux 2.6.25 et ultérieures."
2016-10-30 09:46:26 +00:00
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:223
2016-10-30 09:46:26 +00:00
msgid "The number of signals which the process may queue."
msgstr ""
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:231
2016-10-30 09:46:26 +00:00
msgid ""
"The maximum size (in bytes) of socket buffer usage for this user. This "
"limits the amount of network memory, and hence the amount of mbufs, that "
"this user may hold at any time."
msgstr ""
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:236 ../Doc/library/resource.rst:247
#: ../Doc/library/resource.rst:255
2018-11-29 15:13:39 +00:00
msgid ":ref:`Availability <availability>`: FreeBSD 9 or later."
msgstr ":ref:`Disponibilité <availability>` : FreeBSD 9 et ultérieures."
2016-10-30 09:46:26 +00:00
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:241
2016-10-30 09:46:26 +00:00
msgid ""
"The maximum size (in bytes) of the swap space that may be reserved or used "
"by all of this user id's processes. This limit is enforced only if bit 1 of "
"the vm.overcommit sysctl is set. Please see :manpage:`tuning(7)` for a "
"complete description of this sysctl."
msgstr ""
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:252
2016-10-30 09:46:26 +00:00
msgid "The maximum number of pseudo-terminals created by this user id."
msgstr ""
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:259
2016-10-30 09:46:26 +00:00
msgid "Resource Usage"
msgstr ""
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:261
2016-10-30 09:46:26 +00:00
msgid "These functions are used to retrieve resource usage information:"
msgstr ""
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:266
2016-10-30 09:46:26 +00:00
msgid ""
"This function returns an object that describes the resources consumed by "
"either the current process or its children, as specified by the *who* "
"parameter. The *who* parameter should be specified using one of the :const:"
"`RUSAGE_\\*` constants described below."
msgstr ""
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:271
2019-09-04 09:35:23 +00:00
msgid "A simple example::"
2019-09-16 10:08:42 +00:00
msgstr "Un exemple simple ::"
2019-09-04 09:35:23 +00:00
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:285
2016-10-30 09:46:26 +00:00
msgid ""
"The fields of the return value each describe how a particular system "
"resource has been used, e.g. amount of time spent running is user mode or "
"number of times the process was swapped out of main memory. Some values are "
"dependent on the clock tick internal, e.g. the amount of memory the process "
"is using."
msgstr ""
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:290
2016-10-30 09:46:26 +00:00
msgid ""
"For backward compatibility, the return value is also accessible as a tuple "
"of 16 elements."
msgstr ""
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:293
2016-10-30 09:46:26 +00:00
msgid ""
"The fields :attr:`ru_utime` and :attr:`ru_stime` of the return value are "
"floating point values representing the amount of time spent executing in "
"user mode and the amount of time spent executing in system mode, "
"respectively. The remaining values are integers. Consult the :manpage:"
"`getrusage(2)` man page for detailed information about these values. A brief "
"summary is presented here:"
msgstr ""
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:300
2016-10-30 09:46:26 +00:00
msgid "Index"
2018-11-30 17:31:12 +00:00
msgstr "Index"
2016-10-30 09:46:26 +00:00
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:300
2016-10-30 09:46:26 +00:00
msgid "Field"
msgstr "Champ"
2016-10-30 09:46:26 +00:00
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:300
2016-10-30 09:46:26 +00:00
msgid "Resource"
msgstr ""
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:302
2016-10-30 09:46:26 +00:00
msgid "``0``"
msgstr "``0``"
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:302
2016-10-30 09:46:26 +00:00
msgid ":attr:`ru_utime`"
msgstr ":attr:`ru_utime`"
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:302
2019-09-04 09:35:23 +00:00
msgid "time in user mode (float seconds)"
2016-10-30 09:46:26 +00:00
msgstr ""
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:304
2016-10-30 09:46:26 +00:00
msgid "``1``"
msgstr "``1``"
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:304
2016-10-30 09:46:26 +00:00
msgid ":attr:`ru_stime`"
msgstr ":attr:`ru_stime`"
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:304
2019-09-04 09:35:23 +00:00
msgid "time in system mode (float seconds)"
2016-10-30 09:46:26 +00:00
msgstr ""
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:306
2016-10-30 09:46:26 +00:00
msgid "``2``"
msgstr "``2``"
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:306
2016-10-30 09:46:26 +00:00
msgid ":attr:`ru_maxrss`"
msgstr ":attr:`ru_maxrss`"
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:306
2016-10-30 09:46:26 +00:00
msgid "maximum resident set size"
msgstr ""
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:308
2016-10-30 09:46:26 +00:00
msgid "``3``"
msgstr "``3``"
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:308
2016-10-30 09:46:26 +00:00
msgid ":attr:`ru_ixrss`"
msgstr ":attr:`ru_ixrss`"
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:308
2016-10-30 09:46:26 +00:00
msgid "shared memory size"
msgstr ""
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:310
2016-10-30 09:46:26 +00:00
msgid "``4``"
msgstr "``4``"
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:310
2016-10-30 09:46:26 +00:00
msgid ":attr:`ru_idrss`"
msgstr ":attr:`ru_idrss`"
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:310
2016-10-30 09:46:26 +00:00
msgid "unshared memory size"
msgstr ""
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:312
2016-10-30 09:46:26 +00:00
msgid "``5``"
msgstr "``5``"
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:312
2016-10-30 09:46:26 +00:00
msgid ":attr:`ru_isrss`"
msgstr ":attr:`ru_isrss`"
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:312
2016-10-30 09:46:26 +00:00
msgid "unshared stack size"
msgstr ""
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:314
2016-10-30 09:46:26 +00:00
msgid "``6``"
msgstr "``6``"
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:314
2016-10-30 09:46:26 +00:00
msgid ":attr:`ru_minflt`"
msgstr ":attr:`ru_minflt`"
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:314
2016-10-30 09:46:26 +00:00
msgid "page faults not requiring I/O"
msgstr ""
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:316
2016-10-30 09:46:26 +00:00
msgid "``7``"
msgstr "``7``"
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:316
2016-10-30 09:46:26 +00:00
msgid ":attr:`ru_majflt`"
msgstr ":attr:`ru_majflt`"
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:316
2016-10-30 09:46:26 +00:00
msgid "page faults requiring I/O"
msgstr ""
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:318
2016-10-30 09:46:26 +00:00
msgid "``8``"
msgstr "``8``"
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:318
2016-10-30 09:46:26 +00:00
msgid ":attr:`ru_nswap`"
msgstr ":attr:`ru_nswap`"
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:318
2016-10-30 09:46:26 +00:00
msgid "number of swap outs"
msgstr ""
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:320
2016-10-30 09:46:26 +00:00
msgid "``9``"
msgstr "``9``"
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:320
2016-10-30 09:46:26 +00:00
msgid ":attr:`ru_inblock`"
msgstr ":attr:`ru_inblock`"
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:320
2016-10-30 09:46:26 +00:00
msgid "block input operations"
msgstr ""
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:322
2016-10-30 09:46:26 +00:00
msgid "``10``"
msgstr "``10``"
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:322
2016-10-30 09:46:26 +00:00
msgid ":attr:`ru_oublock`"
msgstr ":attr:`ru_oublock`"
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:322
2016-10-30 09:46:26 +00:00
msgid "block output operations"
msgstr ""
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:324
2016-10-30 09:46:26 +00:00
msgid "``11``"
msgstr "``11``"
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:324
2016-10-30 09:46:26 +00:00
msgid ":attr:`ru_msgsnd`"
msgstr ":attr:`ru_msgsnd`"
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:324
2016-10-30 09:46:26 +00:00
msgid "messages sent"
msgstr ""
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:326
2016-10-30 09:46:26 +00:00
msgid "``12``"
msgstr "``12``"
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:326
2016-10-30 09:46:26 +00:00
msgid ":attr:`ru_msgrcv`"
msgstr ":attr:`ru_msgrcv`"
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:326
2016-10-30 09:46:26 +00:00
msgid "messages received"
msgstr ""
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:328
2016-10-30 09:46:26 +00:00
msgid "``13``"
msgstr "``13``"
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:328
2016-10-30 09:46:26 +00:00
msgid ":attr:`ru_nsignals`"
msgstr ":attr:`ru_nsignals`"
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:328
2016-10-30 09:46:26 +00:00
msgid "signals received"
msgstr ""
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:330
2016-10-30 09:46:26 +00:00
msgid "``14``"
msgstr "``14``"
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:330
2016-10-30 09:46:26 +00:00
msgid ":attr:`ru_nvcsw`"
msgstr ":attr:`ru_nvcsw`"
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:330
2016-10-30 09:46:26 +00:00
msgid "voluntary context switches"
msgstr ""
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:332
2016-10-30 09:46:26 +00:00
msgid "``15``"
msgstr "``15``"
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:332
2016-10-30 09:46:26 +00:00
msgid ":attr:`ru_nivcsw`"
msgstr ":attr:`ru_nivcsw`"
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:332
2016-10-30 09:46:26 +00:00
msgid "involuntary context switches"
msgstr ""
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:335
2016-10-30 09:46:26 +00:00
msgid ""
"This function will raise a :exc:`ValueError` if an invalid *who* parameter "
"is specified. It may also raise :exc:`error` exception in unusual "
"circumstances."
msgstr ""
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:341
2016-10-30 09:46:26 +00:00
msgid ""
"Returns the number of bytes in a system page. (This need not be the same as "
"the hardware page size.)"
msgstr ""
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:344
2016-10-30 09:46:26 +00:00
msgid ""
"The following :const:`RUSAGE_\\*` symbols are passed to the :func:"
"`getrusage` function to specify which processes information should be "
"provided for."
msgstr ""
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:350
2016-10-30 09:46:26 +00:00
msgid ""
"Pass to :func:`getrusage` to request resources consumed by the calling "
"process, which is the sum of resources used by all threads in the process."
msgstr ""
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:356
2016-10-30 09:46:26 +00:00
msgid ""
"Pass to :func:`getrusage` to request resources consumed by child processes "
"of the calling process which have been terminated and waited for."
msgstr ""
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:362
2016-10-30 09:46:26 +00:00
msgid ""
"Pass to :func:`getrusage` to request resources consumed by both the current "
"process and child processes. May not be available on all systems."
msgstr ""
2020-05-24 14:31:50 +00:00
#: ../Doc/library/resource.rst:368
2016-10-30 09:46:26 +00:00
msgid ""
"Pass to :func:`getrusage` to request resources consumed by the current "
"thread. May not be available on all systems."
msgstr ""