File tree Expand file tree Collapse file tree 1 file changed +20
-1
lines changed Expand file tree Collapse file tree 1 file changed +20
-1
lines changed Original file line number Diff line number Diff line change 4
4
5
5
from typing import Tuple
6
6
7
- RLIMIT_CORE = 0
7
+ RLIMIT_AS = ... # type: int
8
+ RLIMIT_CORE = ... # type: int
9
+ RLIMIT_CPU = ... # type: int
10
+ RLIMIT_DATA = ... # type: int
11
+ RLIMIT_FSIZE = ... # type: int
12
+ RLIMIT_MEMLOCK = ... # type: int
13
+ RLIMIT_MSGQUEUE = ... # type: int
14
+ RLIMIT_NICE = ... # type: int
15
+ RLIMIT_NOFILE = ... # type: int
16
+ RLIMIT_NPROC = ... # type: int
17
+ RLIMIT_OFILE = ... # type: int
18
+ RLIMIT_RSS = ... # type: int
19
+ RLIMIT_RTPRIO = ... # type: int
20
+ RLIMIT_RTTIME = ... # type: int
21
+ RLIMIT_SIGPENDING = ... # type: int
22
+ RLIMIT_STACK = ... # type: int
23
+ RLIM_INFINITY = ... # type: int
24
+ RUSAGE_CHILDREN = ... # type: int
25
+ RUSAGE_SELF = ... # type: int
26
+ RUSAGE_THREAD = ... # type: int
8
27
9
28
def getrlimit (resource : int ) -> Tuple [int , int ]: ...
10
29
def setrlimit (resource : int , limits : Tuple [int , int ]) -> None : ...
You can’t perform that action at this time.
0 commit comments