diff options
author | Pavel Zbitskiy <pavel.zbitskiy@gmail.com> | 2014-01-11 13:34:09 +0400 |
---|---|---|
committer | Michael Tokarev <mjt@tls.msk.ru> | 2014-01-15 23:35:51 +0400 |
commit | 19a894ba777fa45c6f89ae007570311384204a69 (patch) | |
tree | 708e6bb085fe85207e51c78f4cafcb4010b0b16f /linux-user/s390x | |
parent | 850484a295a856474978d9338b8c17eb8e00f549 (diff) |
linux-user: fixed s390x clone() argument order
It was broken by 4ce6243dc6216e35b5b691078ffa856463bfa8db,
where TARGET_CLONE_BACKWARDS was specified instead of
TARGET_CLONE_BACKWARDS2.
Signed-off-by: Pavel Zbitskiy <pavel.zbitskiy@gmail.com>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Diffstat (limited to 'linux-user/s390x')
-rw-r--r-- | linux-user/s390x/syscall.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux-user/s390x/syscall.h b/linux-user/s390x/syscall.h index ea8c304840..e5ce30b667 100644 --- a/linux-user/s390x/syscall.h +++ b/linux-user/s390x/syscall.h @@ -22,4 +22,4 @@ struct target_pt_regs { #define UNAME_MACHINE "s390x" -#define TARGET_CLONE_BACKWARDS +#define TARGET_CLONE_BACKWARDS2 |