diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2021-09-08 16:43:58 +0100 |
---|---|---|
committer | Laurent Vivier <laurent@vivier.eu> | 2021-09-13 20:35:44 +0200 |
commit | a44d57a3b9aef9691402560de5da3c03cadd16e5 (patch) | |
tree | 9ad79f50a6599a16263181c924aae0907d15f9fe /linux-user/strace.c | |
parent | 400b7f6d1465815cc3992c009caa760a668928e5 (diff) |
linux-user: Split strace prototypes into strace.h
The functions implemented in strace.c are only used in a few files in
linux-user; split them out of qemu.h and into a new strace.h header
which we include in the places that need it.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20210908154405.15417-3-peter.maydell@linaro.org>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'linux-user/strace.c')
-rw-r--r-- | linux-user/strace.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/linux-user/strace.c b/linux-user/strace.c index cce0a5d1e3..ee3429fae8 100644 --- a/linux-user/strace.c +++ b/linux-user/strace.c @@ -1,4 +1,5 @@ #include "qemu/osdep.h" + #include <sys/ipc.h> #include <sys/msg.h> #include <sys/sem.h> @@ -14,6 +15,7 @@ #include <linux/netlink.h> #include <sched.h> #include "qemu.h" +#include "strace.h" struct syscallname { int nr; |