]> Git Repo - qemu.git/blame - trace/simple.h
ps2: reject unknown commands, instead of blindly accepting them
[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
26f7227b 14
60481e21 15#include "trace/generated-events.h"
26f7227b 16
22890ab5 17
0b2c5088 18void st_print_trace_file_status(FILE *stream, fprintf_function stream_printf);
c5ceb523 19void st_set_trace_file_enabled(bool enable);
41fc57e4
PB
20void st_set_trace_file(const char *file);
21bool st_init(void);
c5ceb523 22void st_flush_trace_buffer(void);
26f7227b 23
62bab732
HPB
24typedef struct {
25 unsigned int tbuf_idx;
62bab732
HPB
26 unsigned int rec_off;
27} TraceBufferRecord;
28
29/* Note for hackers: Make sure MAX_TRACE_LEN < sizeof(uint32_t) */
30#define MAX_TRACE_STRLEN 512
31/**
32 * Initialize a trace record and claim space for it in the buffer
33 *
34 * @arglen number of bytes required for arguments
35 */
36int trace_record_start(TraceBufferRecord *rec, TraceEventID id, size_t arglen);
37
38/**
39 * Append a 64-bit argument to a trace record
40 */
41void trace_record_write_u64(TraceBufferRecord *rec, uint64_t val);
42
43/**
44 * Append a string argument to a trace record
45 */
46void trace_record_write_str(TraceBufferRecord *rec, const char *s, uint32_t slen);
47
48/**
49 * Mark a trace record completed
50 *
51 * Don't append any more arguments to the trace record after calling this.
52 */
53void trace_record_finish(TraceBufferRecord *rec);
54
edb47ec4 55#endif /* TRACE_SIMPLE_H */
This page took 0.433673 seconds and 4 git commands to generate.