Repositories
/
ecl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
594cd70
)
Also verify for HAVE_GETRLIMIT in fix_heap_size().
author
Matthew Mondor
<mmondor@pulsar-zone.net>
Thu, 27 Aug 2015 18:57:23 +0000
(14:57 -0400)
committer
Matthew Mondor
<mmondor@pulsar-zone.net>
Thu, 27 Aug 2015 18:57:23 +0000
(14:57 -0400)
src/c/main.d
patch
|
blob
|
blame
|
history
diff --git
a/src/c/main.d
b/src/c/main.d
index
be7272b
..
cb2db29
100755
(executable)
--- a/
src/c/main.d
+++ b/
src/c/main.d
@@
-87,6
+87,7
@@
const char *ecl_self;
size_t
fix_heap_size(size_t target)
{
+#ifdef HAVE_GETRLIMIT
#ifdef HAVE_SETRLIMIT
struct rlimit rlp;
@@
-119,6
+120,7
@@
fix_heap_size(size_t target)
}
}
#endif
+#endif
return target;
}