|
| | K_MSGQ_DEFINE (kmsgq, 4, 2, 4) |
| | TESTPOINT: init via K_MSGQ_DEFINE.
|
| |
| | K_MSGQ_DEFINE (kmsgq_test_alloc, 4, 2, 4) |
| |
| | K_THREAD_STACK_DEFINE (tstack,(512+CONFIG_TEST_EXTRA_STACK_SIZE)) |
| |
| | K_THREAD_STACK_DEFINE (tstack1,(512+CONFIG_TEST_EXTRA_STACK_SIZE)) |
| |
| | K_THREAD_STACK_DEFINE (tstack2,(512+CONFIG_TEST_EXTRA_STACK_SIZE)) |
| |
| static void | put_msgq (struct k_msgq *pmsgq) |
| |
| static void | get_msgq (struct k_msgq *pmsgq) |
| |
| static void | purge_msgq (struct k_msgq *pmsgq) |
| |
| static void | tisr_entry (const void *p) |
| |
| static void | thread_entry (void *p1, void *p2, void *p3) |
| |
| static void | msgq_thread (struct k_msgq *pmsgq) |
| |
| static void | thread_entry_overflow (void *p1, void *p2, void *p3) |
| |
| static void | msgq_thread_overflow (struct k_msgq *pmsgq) |
| |
| static void | msgq_isr (struct k_msgq *pmsgq) |
| |
| static void | thread_entry_get_data (void *p1, void *p2, void *p3) |
| |
| static void | pend_thread_entry (void *p1, void *p2, void *p3) |
| |
| static void | msgq_thread_data_passing (struct k_msgq *pmsgq) |
| |
| static void | get_empty_entry (void *p1, void *p2, void *p3) |
| |
| static void | put_full_entry (void *p1, void *p2, void *p3) |
| |
| | ZTEST (msgq_api_1cpu, test_msgq_thread) |
| | Test thread to thread data passing via message queue.
|
| |
| | ZTEST (msgq_api, test_msgq_thread_overflow) |
| | Test thread to thread data passing via message queue.
|
| |
| | ZTEST_USER (msgq_api, test_msgq_user_thread) |
| | Test user thread to kernel thread data passing via message queue.
|
| |
| | ZTEST_USER (msgq_api, test_msgq_user_thread_overflow) |
| | Test thread to thread data passing via message queue.
|
| |
| | ZTEST (msgq_api, test_msgq_isr) |
| | Test thread to isr data passing via message queue.
|
| |
| | ZTEST (msgq_api_1cpu, test_msgq_pend_thread) |
| | Test pending writer in msgq.
|
| |
| | ZTEST (msgq_api, test_msgq_alloc) |
| | Test k_msgq_alloc_init()
|
| |
| | ZTEST (msgq_api_1cpu, test_msgq_empty) |
| | Get message from an empty queue.
|
| |
| | ZTEST (msgq_api_1cpu, test_msgq_full) |
| | Put message to a full queue.
|
| |