summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorPrerna Saxena2010-06-24 13:34:53 +0200
committerAnthony Liguori2010-09-09 23:22:44 +0200
commit22890ab5e825601f4c3d5a1a6b4197904e5d1fee (patch)
treea2d75e9328a15bb4a0fc589015f8908f26b25282 /configure
parenttrace: Add simple built-in tracing backend (diff)
downloadqemu-22890ab5e825601f4c3d5a1a6b4197904e5d1fee.tar.gz
qemu-22890ab5e825601f4c3d5a1a6b4197904e5d1fee.tar.xz
qemu-22890ab5e825601f4c3d5a1a6b4197904e5d1fee.zip
trace: Support for dynamically enabling/disabling trace events
This patch adds support for dynamically enabling/disabling of trace events. This is done by internally maintaining each trace event's state, and permitting logging of data from a trace event only if it is in an 'active' state. Monitor commands added : 1) info trace-events : to view all available trace events and their state. 2) trace-event NAME on|off : to enable/disable data logging from a given trace event. Eg, trace-event paio_submit off disables logging of data when paio_submit is hit. By default, all trace-events are disabled. One can enable desired trace-events via the monitor. Signed-off-by: Prerna Saxena <prerna@linux.vnet.ibm.com> Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com> trace: Monitor command 'info trace' Monitor command 'info trace' to display contents of trace buffer Signed-off-by: Prerna Saxena <prerna@linux.vnet.ibm.com> Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com> trace: Remove monitor.h dependency from simpletrace User-mode targets don't have a monitor so the simple trace backend currently does not build on those targets. This patch abstracts the monitor printing interface so there is no direct coupling between simpletrace and the monitor. Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure3
1 files changed, 3 insertions, 0 deletions
diff --git a/configure b/configure
index 6729dbe0bb..5afb3b5ef1 100755
--- a/configure
+++ b/configure
@@ -2468,6 +2468,9 @@ bsd)
esac
echo "TRACE_BACKEND=$trace_backend" >> $config_host_mak
+if test "$trace_backend" = "simple"; then
+ echo "CONFIG_SIMPLE_TRACE=y" >> $config_host_mak
+fi
echo "TOOLS=$tools" >> $config_host_mak
echo "ROMS=$roms" >> $config_host_mak
echo "MAKE=$make" >> $config_host_mak