Used as an atexit function to stop logging on exit. */
| 2550 | |
| 2551 | /* Used as an atexit function to stop logging on exit. */ |
| 2552 | static void |
| 2553 | prof_log_stop_final(void) { |
| 2554 | tsd_t *tsd = tsd_fetch(); |
| 2555 | prof_log_stop(tsd_tsdn(tsd)); |
| 2556 | } |
| 2557 | |
| 2558 | struct prof_emitter_cb_arg_s { |
| 2559 | int fd; |
nothing calls this directly
no test coverage detected