aboutsummaryrefslogtreecommitdiff
path: root/linux-user/exit.c
diff options
context:
space:
mode:
authorAlex Bennée <alex.bennee@linaro.org>2019-05-02 10:27:28 +0100
committerLaurent Vivier <laurent@vivier.eu>2019-05-10 12:44:23 +0200
commit9b21a36cd333f3f9a1acb379f5f4f4928ad84a06 (patch)
treec6b9bd4e0eccd2cbfe857b55d7250b10c392d6a6 /linux-user/exit.c
parent716cdbe0e846f1b75a1ee629619bfc9337ddb914 (diff)
downloadqemu-9b21a36cd333f3f9a1acb379f5f4f4928ad84a06.zip
qemu-9b21a36cd333f3f9a1acb379f5f4f4928ad84a06.tar.gz
qemu-9b21a36cd333f3f9a1acb379f5f4f4928ad84a06.tar.bz2
linux-user: fix GPROF build failure
When linux-user/exit was introduced we failed to move the gprof include at the same time. The CI didn't notice because it only builds system emulation. Fix it for those that still find gprof useful. Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Tested-by: Laurent Desnogues <laurent.desnogues@gmail.com> Message-Id: <20190502092728.32727-1-alex.bennee@linaro.org> Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'linux-user/exit.c')
-rw-r--r--linux-user/exit.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/linux-user/exit.c b/linux-user/exit.c
index 14e94e2..bdda720 100644
--- a/linux-user/exit.c
+++ b/linux-user/exit.c
@@ -18,6 +18,9 @@
*/
#include "qemu/osdep.h"
#include "qemu.h"
+#ifdef TARGET_GPROF
+#include <sys/gmon.h>
+#endif
#ifdef CONFIG_GCOV
extern void __gcov_dump(void);