| * Copyright (c) 2023, Meta |
| * SPDX-License-Identifier: Apache-2.0 |
| #include <zephyr/posix/pthread.h> |
| int cnd_broadcast(cnd_t *cond) |
| switch (pthread_cond_broadcast(cond)) { |
| void cnd_destroy(cnd_t *cond) |
| (void)pthread_cond_destroy(cond); |
| int cnd_init(cnd_t *cond) |
| switch (pthread_cond_init(cond, NULL)) { |
| int cnd_signal(cnd_t *cond) |
| switch (pthread_cond_signal(cond)) { |
| int cnd_timedwait(cnd_t *restrict cond, mtx_t *restrict mtx, const struct timespec *restrict ts) |
| switch (pthread_cond_timedwait(cond, mtx, ts)) { |
| int cnd_wait(cnd_t *cond, mtx_t *mtx) |
| switch (pthread_cond_wait(cond, mtx)) { |