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