qemu-options: Fix space at EOL
[qemu/kevin.git] / trace / simple.h
blob2ab96a81479d5148d0b37daa112d5d191cfee2e6
1 /*
2 * Simple trace backend
4 * Copyright IBM, Corp. 2010
6 * This work is licensed under the terms of the GNU GPL, version 2. See
7 * the COPYING file in the top-level directory.
9 */
11 #ifndef TRACE_SIMPLE_H
12 #define TRACE_SIMPLE_H
14 #include <stdint.h>
15 #include <stdbool.h>
16 #include <stdio.h>
18 typedef uint64_t TraceEventID;
20 typedef struct {
21 const char *tp_name;
22 bool state;
23 } TraceEvent;
25 void st_print_trace_file_status(FILE *stream, fprintf_function stream_printf);
26 void st_set_trace_file_enabled(bool enable);
27 bool st_set_trace_file(const char *file);
28 void st_flush_trace_buffer(void);
30 typedef struct {
31 unsigned int tbuf_idx;
32 unsigned int rec_off;
33 } TraceBufferRecord;
35 /* Note for hackers: Make sure MAX_TRACE_LEN < sizeof(uint32_t) */
36 #define MAX_TRACE_STRLEN 512
37 /**
38 * Initialize a trace record and claim space for it in the buffer
40 * @arglen number of bytes required for arguments
42 int trace_record_start(TraceBufferRecord *rec, TraceEventID id, size_t arglen);
44 /**
45 * Append a 64-bit argument to a trace record
47 void trace_record_write_u64(TraceBufferRecord *rec, uint64_t val);
49 /**
50 * Append a string argument to a trace record
52 void trace_record_write_str(TraceBufferRecord *rec, const char *s, uint32_t slen);
54 /**
55 * Mark a trace record completed
57 * Don't append any more arguments to the trace record after calling this.
59 void trace_record_finish(TraceBufferRecord *rec);
61 #endif /* TRACE_SIMPLE_H */