diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2024-03-15 10:33:49 -1000 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2024-04-30 16:12:05 -0700 |
commit | b384c734ecb6d6a4f121d5716f7275e8e350a6fa (patch) | |
tree | ab9a7c30e9929c372103ee57894c4ef7ec42d645 /include/qemu | |
parent | ccd8f17e02d70c4e9e1d7f3b8ee0f80dd58dc979 (diff) | |
download | qemu-b384c734ecb6d6a4f121d5716f7275e8e350a6fa.zip qemu-b384c734ecb6d6a4f121d5716f7275e8e350a6fa.tar.gz qemu-b384c734ecb6d6a4f121d5716f7275e8e350a6fa.tar.bz2 |
plugins: Replace pr_ops with a proper debug dump flag
The DEBUG_PLUGIN_GEN_OPS ifdef is replaced with "-d op_plugin".
The second pr_ops call can be obtained with "-d op".
Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'include/qemu')
-rw-r--r-- | include/qemu/log.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/qemu/log.h b/include/qemu/log.h index df59bfa..e10e24c 100644 --- a/include/qemu/log.h +++ b/include/qemu/log.h @@ -36,6 +36,7 @@ bool qemu_log_separate(void); #define LOG_STRACE (1 << 19) #define LOG_PER_THREAD (1 << 20) #define CPU_LOG_TB_VPU (1 << 21) +#define LOG_TB_OP_PLUGIN (1 << 22) /* Lock/unlock output. */ |