Displaying 1 result from an estimated 1 matches for "11e71543".
Did you mean:
1171543
2023 Jan 26
0
[klibc:time64] select: Make all select calls wrappers for pselect6()
...fd_set *, fd_set *, fd_set *, struct timespec *, const struct __pselect6 *);
<?> int poll(struct pollfd *, nfds_t, long);
<?> int ppoll::__ppoll(struct pollfd *, nfds_t, struct timespec *, const sigset_t *, size_t);
diff --git a/usr/klibc/select.c b/usr/klibc/select.c
index 8ad93a4b..11e71543 100644
--- a/usr/klibc/select.c
+++ b/usr/klibc/select.c
@@ -4,8 +4,6 @@
#include <errno.h>
#include <sys/syscall.h>
-#if !defined(__NR_select) && !defined(__NR__newselect)
-
struct __pselect6;
__extern int __pselect6(int, fd_set *, fd_set *, fd_set *,
const struct tim...