mirror of
https://git.proxmox.com/git/qemu
synced 2025-08-08 01:52:41 +00:00
To make syscall.c for 64 bit truly warning-free, we need some more #ifs.
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5080 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
9892fbfb24
commit
4583f5897b
@ -195,12 +195,14 @@ _syscall4(int,sys_faccessat,int,dirfd,const char *,pathname,int,mode,int,flags)
|
|||||||
_syscall4(int,sys_fchmodat,int,dirfd,const char *,pathname,
|
_syscall4(int,sys_fchmodat,int,dirfd,const char *,pathname,
|
||||||
mode_t,mode,int,flags)
|
mode_t,mode,int,flags)
|
||||||
#endif
|
#endif
|
||||||
#if defined(TARGET_NR_fchownat) && defined(__NR_fchownat)
|
#if defined(TARGET_NR_fchownat) && defined(__NR_fchownat) && defined(USE_UID16)
|
||||||
_syscall5(int,sys_fchownat,int,dirfd,const char *,pathname,
|
_syscall5(int,sys_fchownat,int,dirfd,const char *,pathname,
|
||||||
uid_t,owner,gid_t,group,int,flags)
|
uid_t,owner,gid_t,group,int,flags)
|
||||||
#endif
|
#endif
|
||||||
_syscall2(int,sys_getcwd1,char *,buf,size_t,size)
|
_syscall2(int,sys_getcwd1,char *,buf,size_t,size)
|
||||||
|
#if TARGET_ABI_BITS == 32
|
||||||
_syscall3(int, sys_getdents, uint, fd, struct dirent *, dirp, uint, count);
|
_syscall3(int, sys_getdents, uint, fd, struct dirent *, dirp, uint, count);
|
||||||
|
#endif
|
||||||
#if defined(TARGET_NR_getdents64) && defined(__NR_getdents64)
|
#if defined(TARGET_NR_getdents64) && defined(__NR_getdents64)
|
||||||
_syscall3(int, sys_getdents64, uint, fd, struct dirent64 *, dirp, uint, count);
|
_syscall3(int, sys_getdents64, uint, fd, struct dirent64 *, dirp, uint, count);
|
||||||
#endif
|
#endif
|
||||||
@ -2548,6 +2550,7 @@ static abi_long do_modify_ldt(CPUX86State *env, int func, abi_ulong ptr,
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if defined(TARGET_I386) && defined(TARGET_ABI32)
|
||||||
static abi_long do_set_thread_area(CPUX86State *env, abi_ulong ptr)
|
static abi_long do_set_thread_area(CPUX86State *env, abi_ulong ptr)
|
||||||
{
|
{
|
||||||
uint64_t *gdt_table = g2h(env->gdt.base);
|
uint64_t *gdt_table = g2h(env->gdt.base);
|
||||||
@ -2679,6 +2682,7 @@ static abi_long do_get_thread_area(CPUX86State *env, abi_ulong ptr)
|
|||||||
unlock_user_struct(target_ldt_info, ptr, 1);
|
unlock_user_struct(target_ldt_info, ptr, 1);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
#endif /* TARGET_I386 && TARGET_ABI32 */
|
||||||
|
|
||||||
#ifndef TARGET_ABI32
|
#ifndef TARGET_ABI32
|
||||||
static abi_long do_arch_prctl(CPUX86State *env, int code, abi_ulong addr)
|
static abi_long do_arch_prctl(CPUX86State *env, int code, abi_ulong addr)
|
||||||
|
Loading…
Reference in New Issue
Block a user