@@ -49,7 +49,7 @@ int __syscall_uname(struct utsname *buf);
49
49
int __syscall_mprotect (size_t start , size_t len , int prot );
50
50
pid_t __syscall_getpgid (pid_t pid );
51
51
int __syscall_fchdir (int fd );
52
- int __syscall__newselect (int nfds , fd_set * readfds , fd_set * writefds , fd_set * exceptfds , void * timeout );
52
+ int __syscall__newselect (int nfds , fd_set * readfds , fd_set * writefds , fd_set * exceptfds , struct timeval * timeout );
53
53
int __syscall_msync (void * addr , size_t len , int flags );
54
54
pid_t __syscall_getsid (pid_t pid );
55
55
int __syscall_fdatasync (int fd );
@@ -99,7 +99,7 @@ int __syscall_symlinkat(const char *target, int newdirfd, const char *linkpath);
99
99
int __syscall_readlinkat (int dirfd , const char * path , char * buf , size_t bufsize );
100
100
int __syscall_fchmodat2 (int dirfd , const char * path , mode_t mode , int flags );
101
101
int __syscall_faccessat (int dirfd , const char * path , int amode , int flags );
102
- int __syscall_pselect6 (int nfds , fd_set * rfds , fd_set * wfds , fd_set * efds , const void * ts , const void * mask );
102
+ int __syscall_pselect6 (int nfds , fd_set * rfds , fd_set * wfds , fd_set * efds , const struct timespec * ts , const void * mask );
103
103
int __syscall_utimensat (int dirfd , const char * path , const struct timespec times [2 ], int flags );
104
104
int __syscall_fallocate (int fd , int mode , off_t offset , off_t len );
105
105
int __syscall_dup3 (int oldfd , int newfd , int flags );
0 commit comments