diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2021-09-08 16:44:01 +0100 |
---|---|---|
committer | Laurent Vivier <laurent@vivier.eu> | 2021-09-13 20:35:45 +0200 |
commit | 5423e6d3a416342ee5857d02688c30b776574b66 (patch) | |
tree | 515dc3286f3ed42a51fd78cec23c9a653fa3b2ed /linux-user/mmap.c | |
parent | 3ad0a76928df01726e5872b8530d8e1eaa1a971d (diff) |
linux-user: Split mmap prototypes into user-mmap.h
Split out the mmap prototypes into a new header user-mmap.h
which we only include where required.
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-6-peter.maydell@linaro.org>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'linux-user/mmap.c')
-rw-r--r-- | linux-user/mmap.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/linux-user/mmap.c b/linux-user/mmap.c index 0e103859fe..4b182444bb 100644 --- a/linux-user/mmap.c +++ b/linux-user/mmap.c @@ -20,6 +20,7 @@ #include "trace.h" #include "exec/log.h" #include "qemu.h" +#include "user-mmap.h" static pthread_mutex_t mmap_mutex = PTHREAD_MUTEX_INITIALIZER; static __thread int mmap_lock_count; |