mailing list of musl libc
 help / color / mirror / code / Atom feed
810cf450442ac644f2eb4b28dc676363cf90d59e blob 1347 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
 
#include <sys/select.h>
#include <signal.h>
#include <stdint.h>
#include <errno.h>
#include "syscall.h"

#define IS32BIT(x) !((x)+0x80000000ULL>>32)
#define CLAMP(x) (int)(IS32BIT(x) ? (x) : 0x7fffffffU+((0ULL+(x))>>63))

int select(int n, fd_set *restrict rfds, fd_set *restrict wfds, fd_set *restrict efds, struct timeval *restrict tv)
{
	time_t s = tv ? tv->tv_sec : 0;
	suseconds_t us = tv ? tv->tv_usec : 0;
	long ns;
	const time_t max_time = (1ULL<<8*sizeof(time_t)-1)-1;

	if (s<0 || us<0) return __syscall_ret(-EINVAL);
	if (us/1000000 > max_time - s) {
		s = max_time;
		us = 999999;
		ns = 999999999;
	} else {
		s += us/1000000;
		us %= 1000000;
		ns = us*1000;
	}

#ifdef SYS_pselect6_time64
	static int use_pselect6_time64 = 1;
	int r = -ENOSYS;
	if (use_pselect6_time64) {
		if (SYS_pselect6 == SYS_pselect6_time64 || !IS32BIT(s))
			r = __syscall_cp(SYS_pselect6_time64, n, rfds, wfds, efds,
				tv ? ((long long[]){s, ns}) : 0,
				((syscall_arg_t[]){ 0, _NSIG/8 }));
		if (SYS_pselect6 == SYS_pselect6_time64 || r!=-ENOSYS)
			return __syscall_ret(r);
		else use_pselect6_time64 = 0;
	}
#endif
#ifdef SYS_select
	return syscall_cp(SYS_select, n, rfds, wfds, efds,
		tv ? ((long[]){s, us}) : 0);
#else
	return syscall_cp(SYS_pselect6, n, rfds, wfds, efds,
		tv ? ((long[]){s, ns}) : 0, ((syscall_arg_t[]){ 0, _NSIG/8 }));
#endif
}
debug log:

solving 810cf450 ...
found 810cf450 in https://inbox.vuxu.org/musl/CAHHiRUTn__COy59J78MMGSyU52Fyn7HBJdzrM6VvcuFq5Rj6HQ@mail.gmail.com/
found 8a786884 in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 8a78688403047d0a1ce8ff3566530ea3722615f9	src/select/select.c

applying [1/1] https://inbox.vuxu.org/musl/CAHHiRUTn__COy59J78MMGSyU52Fyn7HBJdzrM6VvcuFq5Rj6HQ@mail.gmail.com/
diff --git a/src/select/select.c b/src/select/select.c
index 8a786884..810cf450 100644

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

index at:
100644 810cf450442ac644f2eb4b28dc676363cf90d59e	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).