mirror of git://sourceware.org/git/glibc.git
support: Use syscall function instead of INLINE_SYSCALL_CALL
It fixes the build on ARM in thumb mode that requires an out of the line helper (__libc_do_syscall) to issue the syscall.
This commit is contained in:
parent
a894053318
commit
48593b505b
|
@ -31,7 +31,7 @@ utimesat_call (const char *path, const struct __timespec64 tsp[2])
|
||||||
# ifndef __NR_utimensat_time64
|
# ifndef __NR_utimensat_time64
|
||||||
# define __NR_utimensat_time64 __NR_utimensat
|
# define __NR_utimensat_time64 __NR_utimensat
|
||||||
# endif
|
# endif
|
||||||
return INLINE_SYSCALL_CALL (utimensat_time64, AT_FDCWD, path, &tsp[0], 0);
|
return syscall (__NR_utimensat_time64, AT_FDCWD, path, &tsp[0], 0);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue