small typo when setting ulimit of heap
This commit is contained in:
parent
8c760c9da5
commit
ac1aa94a58
|
@ -59,7 +59,7 @@ if [ ! -z "$PS1" ]; then
|
||||||
|
|
||||||
# http://superuser.com/questions/220059/what-parameters-has-ulimit
|
# http://superuser.com/questions/220059/what-parameters-has-ulimit
|
||||||
ulimit -s $stack 2>/dev/null # maximum stack size (kB)
|
ulimit -s $stack 2>/dev/null # maximum stack size (kB)
|
||||||
ulimit -h $heap 2>/dev/null # maximum heap size (kB)
|
ulimit -d $heap 2>/dev/null # maximum heap size (kB)
|
||||||
ulimit -c 2000 2>/dev/null # core file size (512-byte blocks)
|
ulimit -c 2000 2>/dev/null # core file size (512-byte blocks)
|
||||||
ulimit -v unlimited 2>/dev/null # maximum virtual memory size
|
ulimit -v unlimited 2>/dev/null # maximum virtual memory size
|
||||||
ulimit -m unlimited 2>/dev/null # maximum physical memory size
|
ulimit -m unlimited 2>/dev/null # maximum physical memory size
|
||||||
|
|
Loading…
Reference in New Issue