X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=nm.py;h=3f8edbc5d97b29f8ef6b26a05fd5b7ae2b2a5fdf;hb=f9232fc78868df2cd842fc3ccf9c6f804e58a60a;hp=e7d3fd3155646c7b55cbdad577b0c385da92de82;hpb=31d147a70d18ae73e60d427a05aaef6ef93ad3e0;p=nodemanager.git diff --git a/nm.py b/nm.py index e7d3fd3..3f8edbc 100755 --- a/nm.py +++ b/nm.py @@ -146,13 +146,6 @@ def run(): if __name__ == '__main__': logger.log("Entering nm.py "+id) - stacklim = 512*1024 # 0.5 MiB - curlim = resource.getrlimit(resource.RLIMIT_STACK)[0] # soft limit - if curlim > stacklim: - resource.setrlimit(resource.RLIMIT_STACK, (stacklim, stacklim)) - # for some reason, doesn't take effect properly without the exec() - python = '/usr/bin/python' - os.execv(python, [python] + savedargv) run() else: # This is for debugging purposes. Open a copy of Python and import nm