Lines Matching refs:semaphore
470 cy_rslt_t cy_rtos_semaphore_init(cy_semaphore_t* semaphore, uint32_t maxcount, uint32_t initcount);
486 cy_rslt_t cy_rtos_semaphore_get(cy_semaphore_t* semaphore, cy_time_t timeout_ms);
498 cy_rslt_t cy_rtos_semaphore_set(cy_semaphore_t* semaphore);
510 cy_rslt_t cy_rtos_semaphore_get_count(cy_semaphore_t* semaphore, size_t* count);
522 cy_rslt_t cy_rtos_semaphore_deinit(cy_semaphore_t* semaphore);
1063 #define cy_rtos_init_semaphore(semaphore, maxcount, initcount) \ argument
1064 cy_rtos_semaphore_init(semaphore, maxcount, initcount)
1081 #define cy_rtos_get_semaphore(semaphore, timeout_ms, \ argument
1082 in_isr) cy_rtos_semaphore_get(semaphore, timeout_ms)
1095 #define cy_rtos_set_semaphore(semaphore, in_isr) cy_rtos_semaphore_set(semaphore) argument
1107 #define cy_rtos_get_count_semaphore(semaphore, count) cy_rtos_semaphore_get_count(semaphore, count) argument
1119 #define cy_rtos_deinit_semaphore(semaphore) cy_rtos_semaphore_deinit(semaphore) argument