small typo when setting ulimit of heap

This commit is contained in:
Martin Diehl 2014-05-15 21:43:48 +00:00
parent 8c760c9da5
commit ac1aa94a58
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ if [ ! -z "$PS1" ]; then
# http://superuser.com/questions/220059/what-parameters-has-ulimit
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 -v unlimited 2>/dev/null # maximum virtual memory size
ulimit -m unlimited 2>/dev/null # maximum physical memory size