From ac1aa94a58c22b2cb8ebf37419b54ffcf63c8f93 Mon Sep 17 00:00:00 2001 From: Martin Diehl Date: Thu, 15 May 2014 21:43:48 +0000 Subject: [PATCH] small typo when setting ulimit of heap --- DAMASK_env.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DAMASK_env.sh b/DAMASK_env.sh index cae9a2182..7feda64fa 100644 --- a/DAMASK_env.sh +++ b/DAMASK_env.sh @@ -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