From: Peter Maydell <peter.maydell@linaro.org>
To: qemu-devel@nongnu.org
Cc: Jia Liu <proljc@gmail.com>,
patches@linaro.org, Riku Voipio <riku.voipio@iki.fi>,
Alexander Graf <agraf@suse.de>, Blue Swirl <blauwirbel@gmail.com>,
Paul Brook <paul@codesourcery.com>,
Guan Xuetao <gxt@mprc.pku.edu.cn>,
Aurelien Jarno <aurelien@aurel32.net>
Subject: [Qemu-devel] [PATCH 5/8] linux-user: Move includes of target-specific headers to end of qemu.h
Date: Fri, 12 Jul 2013 21:12:50 +0100 [thread overview]
Message-ID: <1373659973-23289-6-git-send-email-peter.maydell@linaro.org> (raw)
In-Reply-To: <1373659973-23289-1-git-send-email-peter.maydell@linaro.org>
The target-specific headers (target_cpu.h and target_signal.h)
might need to use the target-independent structure and function
definitions of qemu.h; so include them only at the bottom of
qemu.h, not the top.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
---
linux-user/qemu.h | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/linux-user/qemu.h b/linux-user/qemu.h
index 6569608..8c420da 100644
--- a/linux-user/qemu.h
+++ b/linux-user/qemu.h
@@ -16,8 +16,6 @@
#include "exec/user/thunk.h"
#include "syscall_defs.h"
#include "syscall.h"
-#include "target_cpu.h"
-#include "target_signal.h"
#include "exec/gdbstub.h"
#include "qemu/queue.h"
@@ -454,4 +452,11 @@ static inline void *lock_user_string(abi_ulong guest_addr)
#include <pthread.h>
#endif
+/* Include target-specific struct and function definitions;
+ * they may need access to the target-independent structures
+ * above, so include them last.
+ */
+#include "target_cpu.h"
+#include "target_signal.h"
+
#endif /* QEMU_H */
--
1.7.9.5
next prev parent reply other threads:[~2013-07-12 20:24 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-07-12 20:12 [Qemu-devel] [PATCH 0/8] linux-user: enable NPTL on everything but x86 Peter Maydell
2013-07-12 20:12 ` [Qemu-devel] [PATCH 1/8] configure: Flip default of target_nptl Peter Maydell
2013-07-12 20:12 ` [Qemu-devel] [PATCH 2/8] configure: Don't say target_nptl="no" if there is no linux-user target Peter Maydell
2013-07-12 20:12 ` [Qemu-devel] [PATCH 3/8] configure: Enable threading on all ppc and mips linux-user targets Peter Maydell
2013-07-12 20:12 ` [Qemu-devel] [PATCH 4/8] configure: Enable threading for unicore32-linux-user Peter Maydell
2013-07-12 20:12 ` Peter Maydell [this message]
2013-07-13 21:01 ` [Qemu-devel] [PATCH 5/8] linux-user: Move includes of target-specific headers to end of qemu.h Richard Henderson
2013-07-12 20:12 ` [Qemu-devel] [PATCH 6/8] linux-user: Enable NPTL for OpenRISC Peter Maydell
2013-07-13 7:40 ` Jia Liu
2013-07-13 8:04 ` Peter Maydell
2013-07-12 20:12 ` [Qemu-devel] [PATCH 7/8] linux-user: Enable NPTL for SPARC targets Peter Maydell
2013-07-13 21:01 ` Richard Henderson
2013-07-12 20:12 ` [Qemu-devel] [PATCH 8/8] linux-user: Enable NPTL for m68k Peter Maydell
2013-07-13 10:28 ` Laurent Vivier
2013-07-13 11:35 ` Peter Maydell
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1373659973-23289-6-git-send-email-peter.maydell@linaro.org \
--to=peter.maydell@linaro.org \
--cc=agraf@suse.de \
--cc=aurelien@aurel32.net \
--cc=blauwirbel@gmail.com \
--cc=gxt@mprc.pku.edu.cn \
--cc=patches@linaro.org \
--cc=paul@codesourcery.com \
--cc=proljc@gmail.com \
--cc=qemu-devel@nongnu.org \
--cc=riku.voipio@iki.fi \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).