aboutsummaryrefslogtreecommitdiff
path: root/accel/tcg
diff options
context:
space:
mode:
authorMarkus Armbruster <armbru@redhat.com>2022-12-21 14:14:34 +0100
committerMarkus Armbruster <armbru@redhat.com>2023-01-20 07:21:46 +0100
commit68ba85cecc7a46ceb66c2f4b5e2165546821d062 (patch)
tree5205e303878504e212fd351e97c598c9ecd2eaa6 /accel/tcg
parentdf4bbc9dcb09d9e3a385ca1a2a23daad0819f531 (diff)
downloadqemu-68ba85cecc7a46ceb66c2f4b5e2165546821d062.zip
qemu-68ba85cecc7a46ceb66c2f4b5e2165546821d062.tar.gz
qemu-68ba85cecc7a46ceb66c2f4b5e2165546821d062.tar.bz2
coroutine: Split qemu/coroutine-core.h off qemu/coroutine.h
qemu/coroutine.h and qemu/lockable.h include each other. They need each other only in macro expansions, so we could simply drop both inclusions to break the loop, and add suitable includes to files that expand the macros. Instead, move a part of qemu/coroutine.h to new qemu/coroutine-core.h so that qemu/coroutine-core.h doesn't need qemu/lockable.h, and qemu/lockable.h only needs qemu/coroutine-core.h. Result: qemu/coroutine.h includes qemu/lockable.h includes qemu/coroutine-core.h. Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-Id: <20221221131435.3851212-5-armbru@redhat.com> [Semantic rebase conflict with 7c10cb38cc "accel/tcg: Add debuginfo support" resolved]
Diffstat (limited to 'accel/tcg')
-rw-r--r--accel/tcg/debuginfo.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/accel/tcg/debuginfo.h b/accel/tcg/debuginfo.h
index 7542cfe..f064e1c 100644
--- a/accel/tcg/debuginfo.h
+++ b/accel/tcg/debuginfo.h
@@ -7,6 +7,8 @@
#ifndef ACCEL_TCG_DEBUGINFO_H
#define ACCEL_TCG_DEBUGINFO_H
+#include "qemu/bitops.h"
+
/*
* Debuginfo describing a certain address.
*/