mailing list of musl libc
 help / color / mirror / code / Atom feed
e76ae9de3bc5c6439982a2c3f2fdac82cd912336 blob 866 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
 
#include <semaphore.h>
#include "pthread_impl.h"

static void cleanup(void *p)
{
	a_dec(p);
}

int sem_timedwait(sem_t *restrict sem, const struct timespec *restrict at)
{
	pthread_testcancel();

	if (!sem_trywait(sem)) return 0;

	int spins = 100;
	while (spins-- && sem->__val[0] <= 0 && !sem->__val[1]) a_spin();

	while (sem_trywait(sem)) {
		int r;
		a_inc(sem->__val+1);
		a_cas(sem->__val, 0, -1);
		pthread_cleanup_push(cleanup, (void *)(sem->__val+1));
		r = __timedwait_cp(sem->__val, -1, CLOCK_REALTIME, at, sem->__val[2]);
		pthread_cleanup_pop(1);
                /* Linux pre-2.6.22 bug: Sometimes SYS_futex returns with EINTR when it should not.
                 * Workaround: Retry on EINTR unless someone installed handlers before.
                 */
		if (r && (r != EINTR || libc.handling_sigs)) {
			errno = r;
			return -1;
		}
	}
	return 0;
}
debug log:

solving e76ae9de ...
found e76ae9de in https://inbox.vuxu.org/musl/20181206173337.GD32233@voyager/
found 8132eb1b in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 8132eb1bf7a276d9b2dd2c9c978bbc0f0b29b7f4	src/thread/sem_timedwait.c

applying [1/1] https://inbox.vuxu.org/musl/20181206173337.GD32233@voyager/
diff --git a/src/thread/sem_timedwait.c b/src/thread/sem_timedwait.c
index 8132eb1b..e76ae9de 100644

Checking patch src/thread/sem_timedwait.c...
Applied patch src/thread/sem_timedwait.c cleanly.

index at:
100644 e76ae9de3bc5c6439982a2c3f2fdac82cd912336	src/thread/sem_timedwait.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).