mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-02 21:32:52 +00:00
175de52487
Cleaned up with scripts/clean-header-guards.pl. Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Richard Henderson <rth@twiddle.net>
12 lines
201 B
C
12 lines
201 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);
|
|
|
|
#endif /* TRACE_FTRACE_H */
|