]> git.proxmox.com Git - mirror_qemu.git/blame - trace/control.h
trace: always compile support for controlling and querying trace event states
[mirror_qemu.git] / trace / control.h
CommitLineData
e4858974
LV
1/*
2 * Interface for configuring and controlling the state of tracing events.
3 *
4 * Copyright (C) 2011 Lluís Vilanova <vilanova@ac.upc.edu>
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#ifndef TRACE_CONTROL_H
11#define TRACE_CONTROL_H
12
fc764105
LV
13#include "qemu-common.h"
14
15
16/** Print the state of all events. */
17void trace_print_events(FILE *stream, fprintf_function stream_printf);
18/** Set the state of an event.
19 *
20 * @return Whether the state changed.
21 */
22bool trace_event_set_state(const char *name, bool state);
e4858974
LV
23
24
25/** Initialize the tracing backend.
26 *
27 * @file Name of trace output file; may be NULL.
28 * Corresponds to commandline option "-trace file=...".
29 * @return Whether the backend could be successfully initialized.
30 */
31bool trace_backend_init(const char *file);
32
33#endif /* TRACE_CONTROL_H */