ftrace.h 226 B

123456789101112131415
  1. #ifndef TRACE_FTRACE_H
  2. #define TRACE_FTRACE_H
  3. #include <stdbool.h>
  4. #define MAX_TRACE_STRLEN 512
  5. #define _STR(x) #x
  6. #define STR(x) _STR(x)
  7. extern int trace_marker_fd;
  8. bool ftrace_init(void);
  9. #endif /* ! TRACE_FTRACE_H */