|
| K_THREAD_STACK_DEFINE (stack_1,(512+CONFIG_TEST_EXTRA_STACKSIZE)) |
|
| K_THREAD_STACK_DEFINE (condvar_wake_stack,(512+CONFIG_TEST_EXTRA_STACKSIZE)) |
|
| K_MUTEX_DEFINE (test_mutex) |
|
| K_THREAD_STACK_ARRAY_DEFINE (multiple_stack,(3),(512+CONFIG_TEST_EXTRA_STACKSIZE)) |
|
| K_THREAD_STACK_ARRAY_DEFINE (multiple_wake_stack,(3),(512+CONFIG_TEST_EXTRA_STACKSIZE)) |
|
void | condvar_isr_wake (const void *condvar) |
|
void | condvar_wake_from_isr (struct k_condvar *condvar) |
|
void | condvar_wait_task (void *p1, void *p2, void *p3) |
|
void | condvar_wake_task (void *p1, void *p2, void *p3) |
|
void | condvar_wake_multiple (void *p1, void *p2, void *p3) |
|
void | condvar_wait_wake_task (void *p1, void *p2, void *p3) |
|
void | test_condvar_wait_forever_wake (void) |
| Test k_condvar_wait() and k_condvar_wake() More...
|
|
void | test_condvar_wait_timeout_wake (void) |
|
void | test_condvar_wait_timeout (void) |
|
void | test_condvar_wait_forever (void) |
| Test k_condvar_wait() forever. More...
|
|
void | test_condvar_wait_nowait (void) |
|
void | test_condvar_wait_nowait_wake (void) |
|
void | test_condvar_wait_forever_wake_from_isr (void) |
|
void | test_condvar_multiple_threads_wait_wake (void) |
|
void | condvar_multiple_wait_wake_task (void *p1, void *p2, void *p3) |
|
void | condvar_multiple_wake_task (void *p1, void *p2, void *p3) |
|
void | test_multiple_condvar_wait_wake (void) |
|
static void | cond_init_null (void *p1, void *p2, void *p3) |
|
void | test_condvar_init_null (void) |
|
static void | cond_signal_null (void *p1, void *p2, void *p3) |
|
static void | cond_broadcast_null (void *p1, void *p2, void *p3) |
|
static void | cond_wait_null (void *p1, void *p2, void *p3) |
|
void | test_condvar_signal_null (void) |
|
void | test_condvar_broadcast_null (void) |
|
void | test_condvar_wait_null (void) |
|
void | inc_count (void *p1, void *p2, void *p3) |
|
void | watch_count (void *p1, void *p2, void *p3) |
|
void | test_condvar_usecase_signal (void) |
|
void | test_condvar_usecase_broadcast (void) |
|
void | test_main (void) |
|