|
| | K_SEM_DEFINE (sync_sema, 0, 1) |
| |
| static void | thread_entry (void *p1, void *p2, void *p3) |
| |
| static void | thread_entry_abort (void *p1, void *p2, void *p3) |
| |
| void | test_threads_abort_self (void) |
| | Validate aborting a thread when called by current thread.
|
| |
| void | test_threads_abort_others (void) |
| | Validate aborting a thread when called by other thread.
|
| |
| void | test_threads_abort_repeat (void) |
| | Test abort on an already terminated thread.
|
| |
| static void | delayed_thread_entry (void *p1, void *p2, void *p3) |
| |
| void | test_delayed_thread_abort (void) |
| | Test abort on delayed thread before it has started execution.
|
| |
| static void | offload_func (const void *param) |
| |
| static void | entry_abort_isr (void *p1, void *p2, void *p3) |
| |
| void | test_abort_from_isr (void) |
| | Show that threads can be aborted from interrupt context by itself.
|
| |
| static void | entry_aborted_thread (void *p1, void *p2, void *p3) |
| |
| void | test_abort_from_isr_not_self (void) |
| | Show that threads can be aborted from interrupt context.
|
| |