Skip to content
Snippets Groups Projects
Commit d2f219c7 authored by Christopher J. Morrone's avatar Christopher J. Morrone
Browse files

Avoid proctrack/linuxproc timing problem.

parent fe8b04fb
No related branches found
No related tags found
No related merge requests found
...@@ -57,6 +57,7 @@ main() ...@@ -57,6 +57,7 @@ main()
{ {
char *id = getenv("SLURM_PROCID"); char *id = getenv("SLURM_PROCID");
if (atoi(id) == 9) { if (atoi(id) == 9) {
sleep(1); /* helps with proctrack/linuxproc problem */
exit(2); exit(2);
} }
sleep(15); sleep(15);
......
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