[Linux manuál]
Návod, kniha: POSIX Programmer's Manual
The <sys/resource.h> header shall define the rusage
structure that includes at least the following members:
The timeval structure shall be defined as described in
<sys/time.h> .
The following symbolic constants shall be defined as possible values for the
resource argument of getrlimit() and setrlimit():
The id_t type shall be defined through typedef as described in
<sys/types.h> .
Inclusion of the <sys/resource.h> header may also make visible all
symbols from <sys/time.h>.
The following sections are informative.
sys/resource.h: definice pro operace prostředků XSI
Originální popis anglicky: sys/resource.h - definitions for XSI resource operationsNávod, kniha: POSIX Programmer's Manual
STRUČNĚ
#include <sys/resource.h>POPIS / INSTRUKCE
The <sys/resource.h> header shall define the following symbolic constants as possible values of the which argument of getpriority() and setpriority():- PRIO_PROCESS
- Identifies the who argument as a process ID.
- PRIO_PGRP
- Identifies the who argument as a process group ID.
- PRIO_USER
- Identifies the who argument as a user ID.
- rlim_t
- Unsigned integer type used for limit values.
- RLIM_INFINITY
- A value of rlim_t indicating no limit.
- RLIM_SAVED_MAX
- A value of type rlim_t indicating an unrepresentable saved hard limit.
- RLIM_SAVED_CUR
- A value of type rlim_t indicating an unrepresentable
saved soft limit.
- RUSAGE_SELF
- Returns information about the current process.
- RUSAGE_CHILDREN
- Returns information about children of the current process.
rlim_t rlim_cur The current (soft) limit. rlim_t rlim_max The hard limit.
struct timeval ru_utime User time used. struct timeval ru_stime System time used.
- RLIMIT_CORE
- Limit on size of core file.
- RLIMIT_CPU
- Limit on CPU time per process.
- RLIMIT_DATA
- Limit on data segment size.
- RLIMIT_FSIZE
- Limit on file size.
- RLIMIT_NOFILE
- Limit on number of open files.
- RLIMIT_STACK
- Limit on stack size.
- RLIMIT_AS
- Limit on address space size.
int getpriority(int, id_t); int getrlimit(int, struct rlimit *); int getrusage(int, struct rusage *); int setpriority(int, id_t, int); int setrlimit(int, const struct rlimit *);
APPLICATION USAGE
None.RATIONALE
None.FUTURE DIRECTIONS
None.SOUVISEJÍCÍ
<sys/time.h> , <sys/types.h> , the System Interfaces volume of IEEE Std 1003.1-2001, getpriority(), getrusage(), getrlimit()COPYRIGHT
Portions of this text are reprinted and reproduced in electronic form from IEEE Std 1003.1, 2003 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2003 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between this version and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html .| 2003 | IEEE/The Open Group |