strace.c (e8b609ac3598c44bba6535cd1306222eb4440bbb) strace.c (d95fd9838b540e69da9b07538ec8ad6ab9eab260)
1#include "qemu/osdep.h"
2
3#include <sys/ipc.h>
4#include <sys/msg.h>
5#include <sys/sem.h>
6#include <sys/shm.h>
7#include <sys/select.h>
8#include <sys/mount.h>

--- 3957 unchanged lines hidden (view full) ---

3966#if defined(TARGET_NR_mmap)
3967static void
3968print_mmap(CPUArchState *cpu_env, const struct syscallname *name,
3969 abi_long arg0, abi_long arg1, abi_long arg2,
3970 abi_long arg3, abi_long arg4, abi_long arg5)
3971{
3972 return print_mmap_both(cpu_env, name, arg0, arg1, arg2, arg3,
3973 arg4, arg5,
1#include "qemu/osdep.h"
2
3#include <sys/ipc.h>
4#include <sys/msg.h>
5#include <sys/sem.h>
6#include <sys/shm.h>
7#include <sys/select.h>
8#include <sys/mount.h>

--- 3957 unchanged lines hidden (view full) ---

3966#if defined(TARGET_NR_mmap)
3967static void
3968print_mmap(CPUArchState *cpu_env, const struct syscallname *name,
3969 abi_long arg0, abi_long arg1, abi_long arg2,
3970 abi_long arg3, abi_long arg4, abi_long arg5)
3971{
3972 return print_mmap_both(cpu_env, name, arg0, arg1, arg2, arg3,
3973 arg4, arg5,
3974#if defined(TARGET_NR_mmap2)
3974#ifdef TARGET_ARCH_WANT_SYS_OLD_MMAP
3975 true
3976#else
3977 false
3978#endif
3979 );
3980}
3981#endif
3982

--- 496 unchanged lines hidden ---
3975 true
3976#else
3977 false
3978#endif
3979 );
3980}
3981#endif
3982

--- 496 unchanged lines hidden ---