| 249 | } |
| 250 | |
| 251 | void trace_performance_fl(const char *file, int line, uint64_t nanos, |
| 252 | const char *format, ...) |
| 253 | { |
| 254 | va_list ap; |
| 255 | va_start(ap, format); |
| 256 | trace_performance_vprintf_fl(file, line, nanos, format, ap); |
| 257 | va_end(ap); |
| 258 | } |
| 259 | |
| 260 | void trace_performance_leave_fl(const char *file, int line, |
| 261 | uint64_t nanos, const char *format, ...) |
nothing calls this directly
no test coverage detected