mirror of
https://github.com/fluencelabs/musl
synced 2025-06-27 05:32:06 +00:00
yet another ugly legacy syscall rename...
This commit is contained in:
@ -500,9 +500,14 @@ static inline long syscall6(long n, long a1, long a2, long a3, long a4, long a5,
|
|||||||
#define __NR_fstatat __NR_fstatat64
|
#define __NR_fstatat __NR_fstatat64
|
||||||
#define __NR_pread __NR_pread64
|
#define __NR_pread __NR_pread64
|
||||||
#define __NR_pwrite __NR_pwrite64
|
#define __NR_pwrite __NR_pwrite64
|
||||||
|
|
||||||
#undef __NR_getrlimit
|
#undef __NR_getrlimit
|
||||||
#define __NR_getrlimit __NR_ugetrlimit
|
#define __NR_getrlimit __NR_ugetrlimit
|
||||||
|
|
||||||
|
#undef __NR_select
|
||||||
|
#define __NR_select __NR__newselect
|
||||||
|
|
||||||
|
|
||||||
#define __SC_socket 1
|
#define __SC_socket 1
|
||||||
#define __SC_bind 2
|
#define __SC_bind 2
|
||||||
#define __SC_connect 3
|
#define __SC_connect 3
|
||||||
|
@ -6,7 +6,7 @@ int select(int n, fd_set *rfds, fd_set *wfds, fd_set *efds, struct timeval *tv)
|
|||||||
{
|
{
|
||||||
int r;
|
int r;
|
||||||
CANCELPT_BEGIN;
|
CANCELPT_BEGIN;
|
||||||
r = syscall5(__NR__newselect, n, (long)rfds, (long)wfds, (long)efds, (long)tv);
|
r = syscall5(__NR_select, n, (long)rfds, (long)wfds, (long)efds, (long)tv);
|
||||||
CANCELPT_END;
|
CANCELPT_END;
|
||||||
return r;
|
return r;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user