sem_post.c\thread\src - musl - musl - an implementation of the standard library for Linux-based systems

index : musl
musl - an implementation of the standard library for Linux-based systems
summary refs log tree commit diff
path: root/src/thread/sem_post.c
blob: 1c8f763cacbd0b751ea7440c8fb3492c29600cb5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <semaphore.h>
#include <limits.h>
#include "pthread_impl.h"
int sem_post(sem_t *sem)
{
	int val, new, waiters, priv = sem->__val[2];
	do {
		val = sem->__val[0];
		waiters = sem->__val[1];
		if ((val & SEM_VALUE_MAX) == SEM_VALUE_MAX) {
			errno = EOVERFLOW;
			return -1;
		}
		new = val + 1;
		if (waiters <= 1)
			new &= ~0x80000000;
	} while (a_cas(sem->__val, val, new) != val);
	if (val<0 || waiters) __wake(sem->__val, waiters>1 ? 1 : -1, priv);
	return 0;
}
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月11日 07:09:59 +0000

AltStyle によって変換されたページ (->オリジナル) /