Home
last modified time | relevance | path

Searched refs:timeoutTicks (Results 1 – 2 of 2) sorted by relevance

/hal_nxp-3.5.0/mcux/mcux-sdk/components/osa/
Dfsl_os_abstraction_threadx.c424 ULONG timeoutTicks; in OSA_SemaphoreWait() local
431 timeoutTicks = TX_WAIT_FOREVER; in OSA_SemaphoreWait()
435 timeoutTicks = TX_NO_WAIT; in OSA_SemaphoreWait()
439 timeoutTicks = MSEC_TO_TICK(millisec); in OSA_SemaphoreWait()
442 if (TX_SUCCESS != tx_semaphore_get((TX_SEMAPHORE *)semaphoreHandle, timeoutTicks)) in OSA_SemaphoreWait()
511 uint32_t timeoutTicks; in OSA_MutexLock() local
515 timeoutTicks = TX_WAIT_FOREVER; in OSA_MutexLock()
519 timeoutTicks = MSEC_TO_TICK(millisec); in OSA_MutexLock()
522 if (TX_SUCCESS != tx_mutex_get((TX_MUTEX *)mutexHandle, timeoutTicks)) in OSA_MutexLock()
708 uint32_t timeoutTicks; in OSA_EventWait() local
[all …]
Dfsl_os_abstraction_free_rtos.c461 uint32_t timeoutTicks; in OSA_SemaphoreWait() local
468 timeoutTicks = portMAX_DELAY; in OSA_SemaphoreWait()
472 timeoutTicks = MSEC_TO_TICK(millisec); in OSA_SemaphoreWait()
475 if (((BaseType_t)0) == (BaseType_t)xSemaphoreTake(sem, timeoutTicks)) in OSA_SemaphoreWait()
568 uint32_t timeoutTicks; in OSA_MutexLock() local
574 timeoutTicks = portMAX_DELAY; in OSA_MutexLock()
578 timeoutTicks = MSEC_TO_TICK(millisec); in OSA_MutexLock()
581 if (((BaseType_t)0) == (BaseType_t)xSemaphoreTakeRecursive(mutex, timeoutTicks)) in OSA_MutexLock()
799 uint32_t timeoutTicks; in OSA_EventWait() local
813 timeoutTicks = portMAX_DELAY; in OSA_EventWait()
[all …]