From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:56169) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RuP4U-0000pG-Kq for qemu-devel@nongnu.org; Mon, 06 Feb 2012 08:57:35 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RuP4Q-0004Ix-1b for qemu-devel@nongnu.org; Mon, 06 Feb 2012 08:57:30 -0500 Received: from gw.ac.upc.edu ([147.83.30.3]:33839) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RuP4P-0004Im-Pw for qemu-devel@nongnu.org; Mon, 06 Feb 2012 08:57:25 -0500 From: =?utf-8?b?TGx1w61z?= Vilanova Date: Mon, 06 Feb 2012 14:57:12 +0100 Message-ID: <20120206135712.10855.74640.stgit@ginnungagap.bsc.es> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PATCH v2 0/6] trace: Generic event state description List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: blauwirbel@gmail.com, stefanha@gmail.com NOTE: Applies on top of the tracetool-handling trivial changes. Provides a generic event state description and a more detailed event cont= rol and query interface. Signed-off-by: Llu=C3=ADs Vilanova --- Changes in v2: * Minor compilation fixes. Llu=C3=ADs Vilanova (6): trace: Provide a generic tracing event descriptor trace: Provide a detailed event control interface trace: [monitor] Use new event control interface trace: [default] Use new event control interface trace: [simple] Port to generic event information and new control i= nterface trace: [stderr] Port to generic event information and new control i= nterface Makefile | 5 ++ Makefile.objs | 15 ++++- docs/tracing.txt | 38 ++++-------- monitor.c | 15 ++++- scripts/tracetool.py | 149 ++++++++++++++++++++++++++++++++--------= ------ trace/control-internal.h | 49 +++++++++++++++ trace/control.c | 89 +++++++++++++++++++++++++-- trace/control.h | 126 ++++++++++++++++++++++++++++++++++++--- trace/default.c | 3 - trace/event-internal.h | 31 ++++++++++ trace/simple.c | 32 ++-------- trace/simple.h | 6 -- trace/stderr.c | 34 ++-------- trace/stderr.h | 11 --- 14 files changed, 440 insertions(+), 163 deletions(-) create mode 100644 trace/control-internal.h create mode 100644 trace/event-internal.h delete mode 100644 trace/stderr.h To: qemu-devel@nongnu.org Cc: Stefan Hajnoczi Cc: Blue Swirl