[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v3 4/6] trace: [default] Use new event control inter
From: |
Lluís Vilanova |
Subject: |
[Qemu-devel] [PATCH v3 4/6] trace: [default] Use new event control interface |
Date: |
Fri, 10 Feb 2012 15:28:54 +0100 |
User-agent: |
StGit/0.15 |
Signed-off-by: Lluís Vilanova <address@hidden>
---
trace/default.c | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/trace/default.c b/trace/default.c
index c9b27a2..12db18d 100644
--- a/trace/default.c
+++ b/trace/default.c
@@ -18,11 +18,10 @@ void trace_print_events(FILE *stream, fprintf_function
stream_printf)
"operation not supported with the current backend\n");
}
-bool trace_event_set_state(const char *name, bool state)
+void trace_event_set_state_dynamic(TraceEvent *ev, bool state)
{
fprintf(stderr, "warning: "
"cannot set the state of a trace event with the current
backend\n");
- return false;
}
bool trace_backend_init(const char *events, const char *file)
- [Qemu-devel] [PATCH v3 0/6] trace: Generic event state description, Lluís Vilanova, 2012/02/10
- [Qemu-devel] [PATCH v3 1/6] trace: Provide a generic tracing event descriptor, Lluís Vilanova, 2012/02/10
- [Qemu-devel] [PATCH v3 2/6] trace: Provide a detailed event control interface, Lluís Vilanova, 2012/02/10
- [Qemu-devel] [PATCH v3 3/6] trace: [monitor] Use new event control interface, Lluís Vilanova, 2012/02/10
- [Qemu-devel] [PATCH v3 4/6] trace: [default] Use new event control interface,
Lluís Vilanova <=
- [Qemu-devel] [PATCH v3 5/6] trace: [simple] Port to generic event information and new control interface, Lluís Vilanova, 2012/02/10
- [Qemu-devel] [PATCH v3 6/6] trace: [stderr] Port to generic event information and new control interface, Lluís Vilanova, 2012/02/10