summaryrefslogtreecommitdiff
path: root/trace/control.c
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2015-10-28 07:06:26 +0100
committerStefan Hajnoczi <stefanha@redhat.com>2016-02-03 09:19:08 +0000
commit43b48cfc3e8ff745a10a6b78a55519d5cf7ec5e8 (patch)
tree659f921a14e9b8a6bfb03aac53b578cfc7fa7554 /trace/control.c
parentc65db7705b7926f4a084b93778e4bd5dd3990aad (diff)
downloadqemu-43b48cfc3e8ff745a10a6b78a55519d5cf7ec5e8.tar.gz
trace: count number of enabled events
This lets trace_event_get_state_dynamic quickly return false. Right now there is hardly any benefit because there are also many assertions and indirections, but the next patch will streamline all of this. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'trace/control.c')
-rw-r--r--trace/control.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/trace/control.c b/trace/control.c
index 995beb384c..95fbc07c3c 100644
--- a/trace/control.c
+++ b/trace/control.c
@@ -16,6 +16,8 @@
#endif
#include "qemu/error-report.h"
+int trace_events_enabled_count;
+
TraceEvent *trace_event_name(const char *name)
{
assert(name != NULL);