Skip to content
Snippets Groups Projects
Commit 3436fe16 authored by Kipp Cannon's avatar Kipp Cannon
Browse files

gstlal_inspiral: add FIXME about stack size adjustment

parent 066c03d8
No related branches found
No related tags found
No related merge requests found
......@@ -228,6 +228,9 @@ def setrlimit(res, lim):
setrlimit(resource.RLIMIT_NPROC, None)
setrlimit(resource.RLIMIT_AS, None)
setrlimit(resource.RLIMIT_RSS, None)
# FIXME: tests at CIT show that this next tweak has no effect. it's
# possible that SL7 has lowered the default stack size from SL6 and we
# don't need to do this anymore. remove?
setrlimit(resource.RLIMIT_STACK, 1024 * 1024) # 1 MiB per thread
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment