如何使用跟踪标记ftrace
来记录用户事件?我使用以下内容,但编译器无法定义WR_ONLY
:
static int trace_fd = -1;
void trace_write(const char *fmt, ...)
{
va_list ap;
char buf[256];
int n;
if (trace_fd < 0)
return;
va_start(ap, fmt);
n = vsnprintf(buf, 256, fmt, ap);
va_end(ap);
write(trace_fd, buf, n);
}
[...]
trace_fd = open("trace_marker", WR_ONLY);
稍后,使用该trace_write()
函数将其记录到ftrace
缓冲区中。
trace_write("record this event\n")
编译器错误:
error: C++ requires a type specifier for all declarations
trace_fd = open("trace_marker", WR_ONLY);