summaryrefslogtreecommitdiff
path: root/code/snippets/rlimits.rb
blob: a391c15279e4e1bb9afeb8f5e1b4baee996101f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# The maximum number of simultaneous processes 
# allowed for the current user.
Process.getrlimit(:NPROC)

# The largest size file that may be created.
Process.getrlimit(:FSIZE)

# The maximum size of the stack segment of the
# process.
Process.getrlimit(:STACK)