Searched refs:cnd_timedwait (Results 1 – 3 of 3) sorted by relevance
/Zephyr-latest/tests/lib/c_lib/thrd/src/ |
D | cnd.c | 55 zassert_equal(thrd_error, cnd_timedwait(NULL, NULL, NULL)); in ZTEST_F() 56 zassert_equal(thrd_error, cnd_timedwait(NULL, NULL, &fixture->time_point)); in ZTEST_F() 57 zassert_equal(thrd_error, cnd_timedwait(NULL, &fixture->mutex, NULL)); in ZTEST_F() 59 cnd_timedwait(NULL, &fixture->mutex, &fixture->time_point)); in ZTEST_F() 60 zassert_equal(thrd_error, cnd_timedwait(&fixture->cond, NULL, NULL)); in ZTEST_F() 62 cnd_timedwait(&fixture->cond, NULL, &fixture->time_point)); in ZTEST_F() 63 zassert_equal(thrd_error, cnd_timedwait(&fixture->cond, &fixture->mutex, NULL)); in ZTEST_F() 76 res = cnd_timedwait(&fixture->cond, &fixture->mutex, &time_point); in test_cnd_thread_fn()
|
/Zephyr-latest/lib/libc/common/source/thrd/ |
D | cnd.c | 51 int cnd_timedwait(cnd_t *restrict cond, mtx_t *restrict mtx, const struct timespec *restrict ts) in cnd_timedwait() function
|
/Zephyr-latest/lib/libc/common/include/ |
D | threads.h | 61 int cnd_timedwait(cnd_t *ZRESTRICT cond, mtx_t *ZRESTRICT mtx, const struct timespec *ZRESTRICT ts);
|