mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 18:11:28 +01:00
12 lines
380 B
C
12 lines
380 B
C
#ifndef LIGHTNING_COMMON_TRACE_H
|
|
#define LIGHTNING_COMMON_TRACE_H
|
|
#include "config.h"
|
|
|
|
void trace_span_start(const char *name, const void *key);
|
|
void trace_span_end(const void *key);
|
|
void trace_span_suspend(const void *key);
|
|
void trace_span_resume(const void *key);
|
|
void trace_span_tag(const void *key, const char *name, const char *value);
|
|
|
|
#endif /* LIGHTNING_COMMON_TRACE_H */
|