summaryrefslogtreecommitdiff
path: root/scripts/qemu-gdb.py
diff options
context:
space:
mode:
authorAlex Bennée <alex.bennee@linaro.org>2018-01-11 11:27:11 +0300
committerPaolo Bonzini <pbonzini@redhat.com>2018-01-16 14:54:51 +0100
commitf1cd52d8912f124cc513a00143fe3baeb44772d1 (patch)
treed1fe2c9b86e8795e914851f3021dbdbc163b0ea7 /scripts/qemu-gdb.py
parent809092f313a7430afcd8cf53d1392624915a90e0 (diff)
downloadqemu-f1cd52d8912f124cc513a00143fe3baeb44772d1.tar.gz
scripts/qemu-gdb: add simple tcg lock status helper
Add a simple helper to dump lock state. Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'scripts/qemu-gdb.py')
-rw-r--r--scripts/qemu-gdb.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/qemu-gdb.py b/scripts/qemu-gdb.py
index b3f8e04f77..d58213e549 100644
--- a/scripts/qemu-gdb.py
+++ b/scripts/qemu-gdb.py
@@ -26,7 +26,7 @@ import os, sys
sys.path.append(os.path.dirname(__file__))
-from qemugdb import aio, mtree, coroutine
+from qemugdb import aio, mtree, coroutine, tcg
class QemuCommand(gdb.Command):
'''Prefix for QEMU debug support commands'''
@@ -38,6 +38,7 @@ QemuCommand()
coroutine.CoroutineCommand()
mtree.MtreeCommand()
aio.HandlersCommand()
+tcg.TCGLockStatusCommand()
coroutine.CoroutineSPFunction()
coroutine.CoroutinePCFunction()