]> git.proxmox.com Git - mirror_qemu.git/blame - trace/simple.h
trace: add meson custom_target() depend_files for tracetool
[mirror_qemu.git] / trace / simple.h
CommitLineData
26f7227b
SH
1/*
2 * Simple trace backend
3 *
4 * Copyright IBM, Corp. 2010
5 *
6 * This work is licensed under the terms of the GNU GPL, version 2. See
7 * the COPYING file in the top-level directory.
8 *
9 */
10
edb47ec4
LV
11#ifndef TRACE_SIMPLE_H
12#define TRACE_SIMPLE_H
26f7227b 13
ba4912cb 14void st_print_trace_file_status(void);
db25d56c 15bool st_set_trace_file_enabled(bool enable);
41fc57e4
PB
16void st_set_trace_file(const char *file);
17bool st_init(void);
c5ceb523 18void st_flush_trace_buffer(void);
26f7227b 19
62bab732
HPB
20typedef struct {
21 unsigned int tbuf_idx;
62bab732
HPB
22 unsigned int rec_off;
23} TraceBufferRecord;
24
25/* Note for hackers: Make sure MAX_TRACE_LEN < sizeof(uint32_t) */
26#define MAX_TRACE_STRLEN 512
27/**
28 * Initialize a trace record and claim space for it in the buffer
29 *
30 * @arglen number of bytes required for arguments
31 */
ef4c9fc8 32int trace_record_start(TraceBufferRecord *rec, uint32_t id, size_t arglen);
62bab732
HPB
33
34/**
35 * Append a 64-bit argument to a trace record
36 */
37void trace_record_write_u64(TraceBufferRecord *rec, uint64_t val);
38
39/**
40 * Append a string argument to a trace record
41 */
42void trace_record_write_str(TraceBufferRecord *rec, const char *s, uint32_t slen);
43
44/**
45 * Mark a trace record completed
46 *
47 * Don't append any more arguments to the trace record after calling this.
48 */
49void trace_record_finish(TraceBufferRecord *rec);
50
edb47ec4 51#endif /* TRACE_SIMPLE_H */