mailing list of musl libc
 help / color / mirror / code / Atom feed
939f3f1d38138fbf7e64e270dabad057c5c408af blob 850 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
 
#define _GNU_SOURCE
#include <poll.h>
#include <signal.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 ppoll(struct pollfd *fds, nfds_t n, const struct timespec *to, const sigset_t *mask)
{
	time_t s = to ? to->tv_sec : 0;
	long ns = to ? to->tv_nsec : 0;
#ifdef SYS_ppoll_time64
	static int use_ppoll_time64 = 1;
	int r = -ENOSYS;
	if (use_ppoll_time64) {
		if (SYS_ppoll == SYS_ppoll_time64 || !IS32BIT(s))
			r = __syscall_cp(SYS_ppoll_time64, fds, n,
				to ? ((long long[]){s, ns}) : 0,
				mask, _NSIG/8);
		if (SYS_ppoll == SYS_ppoll_time64 || r != -ENOSYS)
			return __syscall_ret(r);
		else use_ppoll_time64 = 0;
	}
	s = CLAMP(s);
#endif
	return syscall_cp(SYS_ppoll, fds, n,
		to ? ((long[]){s, ns}) : 0, mask, _NSIG/8);
}
debug log:

solving 939f3f1d ...
found 939f3f1d in https://inbox.vuxu.org/musl/CAHHiRUTn__COy59J78MMGSyU52Fyn7HBJdzrM6VvcuFq5Rj6HQ@mail.gmail.com/
found e614600a in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 e614600ab8b721e6b41dc96d589d3365337fbb9a	src/linux/ppoll.c

applying [1/1] https://inbox.vuxu.org/musl/CAHHiRUTn__COy59J78MMGSyU52Fyn7HBJdzrM6VvcuFq5Rj6HQ@mail.gmail.com/
diff --git a/src/linux/ppoll.c b/src/linux/ppoll.c
index e614600a..939f3f1d 100644

Checking patch src/linux/ppoll.c...
Applied patch src/linux/ppoll.c cleanly.

index at:
100644 939f3f1d38138fbf7e64e270dabad057c5c408af	src/linux/ppoll.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).