mailing list of musl libc
 help / color / mirror / code / Atom feed
c913fe6b3d9a3b039741b1d7f5ca4f97bfc1dd93 blob 785 bytes (raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
 
#include <sys/select.h>
#include <signal.h>
#include <stdint.h>
#include <errno.h>
#include "syscall.h"

int select(int n, fd_set *restrict rfds, fd_set *restrict wfds, fd_set *restrict efds, struct timeval *restrict tv)
{
#ifdef SYS_select
	return syscall_cp(SYS_select, n, rfds, wfds, efds, tv);
#else
	syscall_arg_t data[2] = { 0, _NSIG/8 };
	struct timespec ts;
	if (tv) {
		if (tv->tv_sec < 0 || tv->tv_usec < 0)
			return __syscall_ret(-EINVAL);
		time_t extra_secs = tv->tv_usec / 1000000;
		ts.tv_nsec = tv->tv_usec % 1000000 * 1000;
		const time_t max_time = (1ULL << (8 * sizeof(time_t) - 1)) - 1;
		ts.tv_sec = extra_secs > max_time - tv->tv_sec ?
			max_time : tv->tv_sec + extra_secs;
	}
	return syscall_cp(SYS_pselect6, n, rfds, wfds, efds, tv ? &ts : 0, data);
#endif
}
debug log:

solving c913fe6b ...
found c913fe6b in https://inbox.vuxu.org/musl/1636016.5PCnkOXM1K@prometheus.sedrubal.de/ ||
	https://inbox.vuxu.org/musl/1676444.u5bekTFY47@prometheus.sedrubal.de/
found 02fd75c3 in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 02fd75c3828aca664bf6d695d82e30003c34619a	src/select/select.c

applying [1/2] https://inbox.vuxu.org/musl/1636016.5PCnkOXM1K@prometheus.sedrubal.de/
diff --git a/src/select/select.c b/src/select/select.c
index 02fd75c3..c913fe6b 100644

Checking patch src/select/select.c...
Applied patch src/select/select.c cleanly.

skipping https://inbox.vuxu.org/musl/1676444.u5bekTFY47@prometheus.sedrubal.de/ for c913fe6b
index at:
100644 c913fe6b3d9a3b039741b1d7f5ca4f97bfc1dd93	src/select/select.c

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).