From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:49878) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ULCqQ-0004B4-L5 for qemu-devel@nongnu.org; Thu, 28 Mar 2013 09:26:30 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ULCqK-00089q-1f for qemu-devel@nongnu.org; Thu, 28 Mar 2013 09:26:18 -0400 Received: from mx1.redhat.com ([209.132.183.28]:19922) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ULCqJ-00089S-OM for qemu-devel@nongnu.org; Thu, 28 Mar 2013 09:26:11 -0400 From: Stefan Hajnoczi Date: Thu, 28 Mar 2013 14:25:46 +0100 Message-Id: <1364477152-26994-6-git-send-email-stefanha@redhat.com> In-Reply-To: <1364477152-26994-1-git-send-email-stefanha@redhat.com> References: <1364477152-26994-1-git-send-email-stefanha@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PATCH 05/11] trace: [default] Port to generic event information and new control interface List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Anthony Liguori , =?UTF-8?q?Llu=C3=ADs=20Vilanova?= , Stefan Hajnoczi From: Llu=C3=ADs Vilanova Signed-off-by: Llu=C3=ADs Vilanova Signed-off-by: Stefan Hajnoczi --- trace/default.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/trace/default.c b/trace/default.c index c9b27a2..6e07a47 100644 --- a/trace/default.c +++ b/trace/default.c @@ -1,7 +1,7 @@ /* * Default implementation for backend initialization from commandline. * - * Copyright (C) 2011 Llu=C3=ADs Vilanova + * Copyright (C) 2011-2012 Llu=C3=ADs Vilanova * * This work is licensed under the terms of the GNU GPL, version 2. See * the COPYING file in the top-level directory. @@ -18,11 +18,10 @@ void trace_print_events(FILE *stream, fprintf_functio= n stream_printf) "operation not supported with the current backend\n"); } =20 -bool trace_event_set_state(const char *name, bool state) +void trace_event_set_state_dynamic_backend(TraceEvent *ev, bool state) { fprintf(stderr, "warning: " "cannot set the state of a trace event with the current back= end\n"); - return false; } =20 bool trace_backend_init(const char *events, const char *file) --=20 1.8.1.4