summary refs log tree commit diff stats
path: root/trace/ftrace.h
blob: 16c122816d178ec45e4aa4cc156d5ceba8dd82ca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef TRACE_FTRACE_H
#define TRACE_FTRACE_H

#define MAX_TRACE_STRLEN 512
#define _STR(x) #x
#define STR(x) _STR(x)

extern int trace_marker_fd;

bool ftrace_init(void);
G_GNUC_PRINTF(1, 2) void ftrace_write(const char *fmt, ...);

#endif /* TRACE_FTRACE_H */