| 8939 | // the process may hang. To avoid this, we ignore SIGPROF here and re-enable |
| 8940 | // it after the call to fork()/clone() is complete. |
| 8941 | struct sigaction saved_sigprof_action; |
| 8942 | struct sigaction ignore_sigprof_action; |
| 8943 | memset(&ignore_sigprof_action, 0, sizeof(ignore_sigprof_action)); |
| 8944 | sigemptyset(&ignore_sigprof_action.sa_mask); |
no outgoing calls