mailing list of musl libc
 help / color / mirror / code / Atom feed
43c4fef6867e09c9f1138b051859506d115669b5 blob 1027 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
 
#include <mqueue.h>
#include <errno.h>
#include "syscall.h"

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

ssize_t mq_timedreceive(mqd_t mqd, char *restrict msg, size_t len, unsigned *restrict prio, const struct timespec *restrict at)
{
#ifdef SYS_mq_timedreceive_time64
	static int use_mq_timedreceive_time64 = 1;
	time_t s = at ? at->tv_sec : 0;
	long ns = at ? at->tv_nsec : 0;
	long r = -ENOSYS;
	if (use_mq_timedreceive_time64) {
		if (SYS_mq_timedreceive == SYS_mq_timedreceive_time64 || !IS32BIT(s))
			r = __syscall_cp(SYS_mq_timedreceive_time64, mqd, msg, len, prio,
				at ? ((long long []){at->tv_sec, at->tv_nsec}) : 0);
		if (SYS_mq_timedreceive == SYS_mq_timedreceive_time64 || r != -ENOSYS)
			return __syscall_ret(r);
		else use_mq_timedreceive_time64 = 0;
	}
	return syscall_cp(SYS_mq_timedreceive, mqd, msg, len, prio,
		at ? ((long[]){CLAMP(s), ns}) : 0);
#else
	return syscall_cp(SYS_mq_timedreceive, mqd, msg, len, prio, at);
#endif
}
debug log:

solving 43c4fef6 ...
found 43c4fef6 in https://inbox.vuxu.org/musl/CAHHiRUTn__COy59J78MMGSyU52Fyn7HBJdzrM6VvcuFq5Rj6HQ@mail.gmail.com/
found f41b6642 in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 f41b6642f822e4d95edc701a4578ddbefce3ab93	src/mq/mq_timedreceive.c

applying [1/1] https://inbox.vuxu.org/musl/CAHHiRUTn__COy59J78MMGSyU52Fyn7HBJdzrM6VvcuFq5Rj6HQ@mail.gmail.com/
diff --git a/src/mq/mq_timedreceive.c b/src/mq/mq_timedreceive.c
index f41b6642..43c4fef6 100644

Checking patch src/mq/mq_timedreceive.c...
Applied patch src/mq/mq_timedreceive.c cleanly.

index at:
100644 43c4fef6867e09c9f1138b051859506d115669b5	src/mq/mq_timedreceive.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).