]> git.proxmox.com Git - qemu.git/blame - simpletrace.h
Remove unused USES_X509_AUTH macro from VNC sasl code
[qemu.git] / simpletrace.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
11#ifndef SIMPLETRACE_H
12#define SIMPLETRACE_H
13
14#include <stdint.h>
22890ab5
PS
15#include <stdbool.h>
16#include <stdio.h>
26f7227b 17
0b5538c3 18#ifdef CONFIG_SIMPLE_TRACE
26f7227b
SH
19typedef uint64_t TraceEventID;
20
22890ab5
PS
21typedef struct {
22 const char *tp_name;
23 bool state;
24} TraceEvent;
25
26f7227b
SH
26void trace0(TraceEventID event);
27void trace1(TraceEventID event, uint64_t x1);
28void trace2(TraceEventID event, uint64_t x1, uint64_t x2);
29void trace3(TraceEventID event, uint64_t x1, uint64_t x2, uint64_t x3);
30void trace4(TraceEventID event, uint64_t x1, uint64_t x2, uint64_t x3, uint64_t x4);
31void trace5(TraceEventID event, uint64_t x1, uint64_t x2, uint64_t x3, uint64_t x4, uint64_t x5);
32void trace6(TraceEventID event, uint64_t x1, uint64_t x2, uint64_t x3, uint64_t x4, uint64_t x5, uint64_t x6);
0b2c5088
SW
33void st_print_trace(FILE *stream, fprintf_function stream_printf);
34void st_print_trace_events(FILE *stream, fprintf_function stream_printf);
f871d689 35bool st_change_trace_event_state(const char *tname, bool tstate);
0b2c5088 36void st_print_trace_file_status(FILE *stream, fprintf_function stream_printf);
c5ceb523
SH
37void st_set_trace_file_enabled(bool enable);
38bool st_set_trace_file(const char *file);
39void st_flush_trace_buffer(void);
31d3c9b8 40bool st_init(const char *file);
0b5538c3 41#else
31d3c9b8 42static inline bool st_init(const char *file)
0b5538c3 43{
31d3c9b8 44 return true;
0b5538c3
SH
45}
46#endif /* !CONFIG_SIMPLE_TRACE */
26f7227b
SH
47
48#endif /* SIMPLETRACE_H */