| 454 | } |
| 455 | |
| 456 | void trace_span_suspend_may_free_(const void *key, const char *lbl) |
| 457 | { |
| 458 | if (disable_trace) |
| 459 | return; |
| 460 | trace_span_suspend_(key, lbl); |
| 461 | tal_add_destructor(key, destroy_trace_span); |
| 462 | } |
| 463 | |
| 464 | void trace_span_resume_(const void *key, const char *lbl) |
| 465 | { |
nothing calls this directly
no test coverage detected