summaryrefslogtreecommitdiffstats
path: root/man3/ulimit.3
blob: f003482486943bd37b5c28a0abc06420259c7e88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
'\" t
.\" Copyright (C) 1996 Andries Brouwer (aeb@cwi.nl)
.\"
.\" SPDX-License-Identifier: Linux-man-pages-copyleft
.\"
.\" Moved to man3, aeb, 980612
.\"
.TH ulimit 3 2023-10-31 "Linux man-pages 6.7"
.SH NAME
ulimit \- get and set user limits
.SH LIBRARY
Standard C library
.RI ( libc ", " \-lc )
.SH SYNOPSIS
.nf
.B #include <ulimit.h>
.P
.BI "[[deprecated]] long ulimit(int " cmd ", long " newlimit );
.fi
.SH DESCRIPTION
Warning: this routine is obsolete.
Use
.BR getrlimit (2),
.BR setrlimit (2),
and
.BR sysconf (3)
instead.
For the shell command
.BR ulimit ,
see
.BR bash (1).
.P
The
.BR ulimit ()
call will get or set some limit for the calling process.
The
.I cmd
argument can have one of the following values.
.TP
.B UL_GETFSIZE
Return the limit on the size of a file, in units of 512 bytes.
.TP
.B UL_SETFSIZE
Set the limit on the size of a file.
.TP
.B 3
(Not implemented for Linux.)
Return the maximum possible address of the data segment.
.TP
.B 4
(Implemented but no symbolic constant provided.)
Return the maximum number of files that the calling process can open.
.SH RETURN VALUE
On success,
.BR ulimit ()
returns a nonnegative value.
On error, \-1 is returned, and
.I errno
is set to indicate the error.
.SH ERRORS
.TP
.B EPERM
An unprivileged process tried to increase a limit.
.SH ATTRIBUTES
For an explanation of the terms used in this section, see
.BR attributes (7).
.TS
allbox;
lbx lb lb
l l l.
Interface	Attribute	Value
T{
.na
.nh
.BR ulimit ()
T}	Thread safety	MT-Safe
.TE
.SH STANDARDS
POSIX.1-2008.
.SH HISTORY
SVr4, POSIX.1-2001.
POSIX.1-2008 marks it as obsolete.
.SH SEE ALSO
.BR bash (1),
.BR getrlimit (2),
.BR setrlimit (2),
.BR sysconf (3)