Upstream: https://gitlab.com/qemu-project/qemu.git Upstream-Commit: d2e570cc0f97b936902a5b1b86b73c0f5998b475
14 lines
262 B
C
14 lines
262 B
C
#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 */
|