diff mbox series

[RFC] gcov: move gmon.h include

Message ID 20190114145019.22819-1-alex.bennee@linaro.org
State New
Headers show
Series [RFC] gcov: move gmon.h include | expand

Commit Message

Alex Bennée Jan. 14, 2019, 2:50 p.m. UTC
This got missed when preexit_cleanup got moved into it's own file and
is apparently can get included as a side-effect so is only noticeable
on some systems.

Signed-off-by: Alex Bennée <alex.bennee@linaro.org>

---
 linux-user/exit.c    | 3 +++
 linux-user/syscall.c | 3 ---
 2 files changed, 3 insertions(+), 3 deletions(-)

-- 
2.17.1
diff mbox series

Patch

diff --git a/linux-user/exit.c b/linux-user/exit.c
index 14e94e28fa..bdda720553 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);
diff --git a/linux-user/syscall.c b/linux-user/syscall.c
index b5786d4fc1..7bbedb305f 100644
--- a/linux-user/syscall.c
+++ b/linux-user/syscall.c
@@ -59,9 +59,6 @@ 
 #ifdef CONFIG_TIMERFD
 #include <sys/timerfd.h>
 #endif
-#ifdef TARGET_GPROF
-#include <sys/gmon.h>
-#endif
 #ifdef CONFIG_EVENTFD
 #include <sys/eventfd.h>
 #endif