<div dir="ltr">Hi,<br><br><div>I have what is a fairly convoluted question involving several different libraries, so I'll try to make it as succinct as possible. The issue is that we have an MPI job that is canceled by slurm's "scancel", but instead of exiting cleanly, the job (sometimes) hangs. I think we've tracked it down to the job being canceled while in the middle of a call to "free" and then "free" subsequently being called again from a function called by the signal handler, which leads to the deadlock. The general rule seems to be that only "asynchronous-safe" functions (abort(), _Exit(), etc.) are allowed to be called in signal handlers [0].</div><div><br></div><div>In our specific case, the stack trace of one of the hung jobs is:</div><div><div><br></div><div>#0  __lll_lock_wait_private () at ../sysdeps/unix/sysv/linux/x86_64/lowlevellock.S:95<br>#1  0x00007ff175223114 in _int_free (have_lock=0, p=0x55cd9120f2a0, av=0x7ff175576c40 <main_arena>) at malloc.c:4266<br>#2  __GI___libc_free (mem=0x55cd9120f2b0) at malloc.c:3124<br>#3  0x00007ff1714938aa in H5MM_xfree () <br>#4  0x00007ff17147e5da in H5L_term_package () <br>#5  0x00007ff17133a766 in H5_term_library () <br>#6  0x00007ff1751ce041 in __run_exit_handlers (status=59, listp=0x7ff175576718 <__exit_funcs>, run_list_atexit=run_list_atexit@entry=true, run_dtors=run_dtors@entry=true) at exit.c:108<br>#7  0x00007ff1751ce13a in __GI_exit (status=<optimized out>) at exit.c:139<br>#8  0x00007ff176f3c809 in MPL_exit () from /usr/lib/x86_64-linux-gnu/libmpich.so.0<br>#9  0x00007ff176eefd4c in ?? () from /usr/lib/x86_64-linux-gnu/libmpich.so.0<br>#10 0x00007ff176e3ea59 in PMPI_Abort () from /usr/lib/x86_64-linux-gnu/libmpich.so.0<br>#11 0x00007ff177635531 in PetscSignalHandlerDefault () </div><div>#12 0x00007ff177635270 in PetscSignalHandler_Private () <br>#13 <signal handler called><br>#14 0x00007ff175222c6f in _int_free (have_lock=0, p=0x55cd9345e360, av=0x7ff175576c40 <main_arena>) at malloc.c:4280<br>#15 __GI___libc_free (mem=0x55cd9345e370) at malloc.c:3124</div><div></div></div><div><br></div><div>To summarize this:</div><div><div><div>1.) We are in a call to "free"</div><div>2.) The process receives a sigterm/sigkill signal, which petsc handles<br>3.) petsc calls mpich's abort function<br>4.) mpich calls "exit", which causes the "atexit" functions to run </div><div>5.) HDF5 registers an "atexit" function which also calls "free"</div><div>6.) Deadlock</div><div><br></div><div>This could definitely be seen as an HDF5 issue: I'm not sure of the wisdom of registering "atexit" functions which free memory -- the program is exiting after all. But, I also wanted to confirm whether calling exit() from MPL_exit() is a deliberate choice, or if it could perhaps be changed to _exit, which I think would avoid this particular problem.</div></div><div><br></div><div><div>Thanks, <br><div dir="ltr">John</div></div><div dir="ltr"></div><div><div><br></div><div>[0]: <a href="https://wiki.sei.cmu.edu/confluence/display/c/SIG30-C.+Call+only+asynchronous-safe+functions+within+signal+handlers" target="_blank">https://wiki.sei.cmu.edu/confluence/display/c/SIG30-C.+Call+only+asynchronous-safe+functions+within+signal+handlers</a></div></div></div></div><div><br></div><br></div>