Lines Matching refs:thread
220 cy_rslt_t cy_rtos_thread_create(cy_thread_t* thread, cy_thread_entry_fn_t entry_function,
253 cy_rslt_t cy_rtos_thread_terminate(cy_thread_t* thread);
264 cy_rslt_t cy_rtos_thread_join(cy_thread_t* thread);
277 cy_rslt_t cy_rtos_thread_is_running(cy_thread_t* thread, bool* running);
288 cy_rslt_t cy_rtos_thread_get_state(cy_thread_t* thread, cy_thread_state_t* state);
298 cy_rslt_t cy_rtos_thread_get_handle(cy_thread_t* thread);
326 cy_rslt_t cy_rtos_thread_set_notification(cy_thread_t* thread);
342 cy_rslt_t cy_rtos_thread_get_name(cy_thread_t* thread, const char** thread_name);
849 #define cy_rtos_create_thread(thread, entry_function, name, stack, stack_size, priority, arg) \ argument
850 cy_rtos_thread_create(thread, entry_function, name, stack, stack_size, priority, arg)
863 #define cy_rtos_is_thread_running(thread, running) \ argument
864 cy_rtos_thread_is_running(thread, running)
877 #define cy_rtos_set_thread_notification(thread, in_isr) \ argument
878 cy_rtos_thread_set_notification(thread)
903 #define cy_rtos_get_thread_state(thread, state) cy_rtos_thread_get_state(thread, state) argument
914 #define cy_rtos_join_thread(thread) cy_rtos_thread_join(thread) argument
924 #define cy_rtos_get_thread_handle(thread) cy_rtos_thread_get_handle(thread) argument
940 #define cy_rtos_terminate_thread(thread) cy_rtos_thread_terminate(thread) argument