Update version for v9.0.0-rc3 release
[qemu/kevin.git] / trace / simple.h
blobee1983ce5617a9c8b09f66d8ca7d83ed3a155a57
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 void st_print_trace_file_status(void);
15 bool st_set_trace_file_enabled(bool enable);
16 void st_set_trace_file(const char *file);
17 bool st_init(void);
18 void st_init_group(size_t group);
19 void st_flush_trace_buffer(void);
21 typedef struct {
22 unsigned int tbuf_idx;
23 unsigned int rec_off;
24 } TraceBufferRecord;
26 /* Note for hackers: Make sure MAX_TRACE_LEN < sizeof(uint32_t) */
27 #define MAX_TRACE_STRLEN 512
28 /**
29 * Initialize a trace record and claim space for it in the buffer
31 * @arglen number of bytes required for arguments
33 int trace_record_start(TraceBufferRecord *rec, uint32_t id, size_t arglen);
35 /**
36 * Append a 64-bit argument to a trace record
38 void trace_record_write_u64(TraceBufferRecord *rec, uint64_t val);
40 /**
41 * Append a string argument to a trace record
43 void trace_record_write_str(TraceBufferRecord *rec, const char *s, uint32_t slen);
45 /**
46 * Mark a trace record completed
48 * Don't append any more arguments to the trace record after calling this.
50 void trace_record_finish(TraceBufferRecord *rec);
52 #endif /* TRACE_SIMPLE_H */