| 85 | string pass_name; |
| 86 | |
| 87 | void sigalarm_handler(int) { |
| 88 | parallelMgr->finishChild(/*is_timeout=*/true); |
| 89 | // this is a fully asynchronous exit, skip destructors and such |
| 90 | _Exit(0); |
| 91 | } |
| 92 | |
| 93 | void printDot(const Function &tgt, int n) { |
| 94 | if (opt_print_dot) { |
nothing calls this directly
no test coverage detected