cnd_signal.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/cnd_signal.c
blob: 02cdc6c60a2550104a0ef09c857205c293c80e10 (plain) (blame)
1
2
3
4
5
6
7
8
9
#include <threads.h>
#include <pthread.h>
int cnd_signal(cnd_t *c)
{
	/* This internal function never fails, and always returns zero,
	 * which matches the value thrd_success is defined with. */
	return __private_cond_signal((pthread_cond_t *)c, 1);
}
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月13日 13:12:56 +0000

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