mirror of
https://github.com/fluencelabs/musl
synced 2025-06-26 21:22:11 +00:00
update syscalls with off_t arguments to handle argument alignment, if needed
the arm syscall abi requires 64-bit arguments to be aligned on an even register boundary. these new macros facilitate meeting the abi requirement without imposing significant ugliness on the code.
This commit is contained in:
@ -3,6 +3,6 @@
|
||||
|
||||
int posix_fadvise(int fd, off_t base, off_t len, int advice)
|
||||
{
|
||||
return -__syscall(SYS_fadvise, fd, __SYSCALL_LL(base),
|
||||
__SYSCALL_LL(len), advice);
|
||||
return -(__syscall)(SYS_fadvise, fd, __SYSCALL_LL_O(base),
|
||||
__SYSCALL_LL_E(len), advice);
|
||||
}
|
||||
|
@ -3,6 +3,6 @@
|
||||
|
||||
int posix_fallocate(int fd, off_t base, off_t len)
|
||||
{
|
||||
return -__syscall(SYS_fallocate, fd, __SYSCALL_LL(base),
|
||||
__SYSCALL_LL(len));
|
||||
return -__syscall(SYS_fallocate, fd, __SYSCALL_LL_O(base),
|
||||
__SYSCALL_LL_E(len));
|
||||
}
|
||||
|
Reference in New Issue
Block a user