[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 13/47] linux-user: Use abi_uint not unsigned in syscall_defs.h
From: |
Richard Henderson |
Subject: |
[PULL 13/47] linux-user: Use abi_uint not unsigned in syscall_defs.h |
Date: |
Sat, 15 Jul 2023 14:52:43 +0100 |
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
linux-user/syscall_defs.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/linux-user/syscall_defs.h b/linux-user/syscall_defs.h
index 9dc41828cf..c8ffb4f785 100644
--- a/linux-user/syscall_defs.h
+++ b/linux-user/syscall_defs.h
@@ -1776,14 +1776,14 @@ struct target_stat {
#define TARGET_STAT_HAVE_NSEC
struct target_stat {
- unsigned st_dev;
+ abi_uint st_dev;
abi_long st_pad1[3]; /* Reserved for network id */
abi_ulong st_ino;
abi_uint st_mode;
abi_uint st_nlink;
abi_int st_uid;
abi_int st_gid;
- unsigned st_rdev;
+ abi_uint st_rdev;
abi_long st_pad2[2];
abi_long st_size;
abi_long st_pad3;
--
2.34.1
- [PULL 00/47] tcg + linux-user patch queue, Richard Henderson, 2023/07/15
- [PULL 04/47] linux-user: Use abi_int not int32_t in syscall_defs.h, Richard Henderson, 2023/07/15
- [PULL 06/47] linux-user: Use abi_llong not int64_t in syscall_defs.h, Richard Henderson, 2023/07/15
- [PULL 05/47] linux-user: Use abi_ullong not uint64_t in syscall_defs.h, Richard Henderson, 2023/07/15
- [PULL 02/47] linux-user: Remove #if 0 block in syscall_defs.h, Richard Henderson, 2023/07/15
- [PULL 09/47] linux-user: Use abi_llong not long long in syscall_defs.h, Richard Henderson, 2023/07/15
- [PULL 13/47] linux-user: Use abi_uint not unsigned in syscall_defs.h,
Richard Henderson <=
- [PULL 15/47] include/exec/user: Set ABI_LLONG_ALIGNMENT to 4 for nios2, Richard Henderson, 2023/07/15
- [PULL 25/47] linux-user: Populate more bits in mmap_flags_tbl, Richard Henderson, 2023/07/15
- [PULL 30/47] linux-user: Widen target_mmap offset argument to off_t, Richard Henderson, 2023/07/15
- [PULL 10/47] linux-user: Use abi_int not int in syscall_defs.h, Richard Henderson, 2023/07/15
- [PULL 20/47] linux-user: Make sure initial brk(0) is page-aligned, Richard Henderson, 2023/07/15
- [PULL 36/47] linux-user: Use 'last' instead of 'end' in target_mmap, Richard Henderson, 2023/07/15