Home
last modified time | relevance | path

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

/hal_nxp-latest/mcux/mcux-sdk/components/osa/
Dfsl_os_abstraction_threadx.c545 ULONG timeoutTicks; in OSA_SemaphoreWait() local
552 timeoutTicks = TX_WAIT_FOREVER; in OSA_SemaphoreWait()
556 timeoutTicks = TX_NO_WAIT; in OSA_SemaphoreWait()
560 timeoutTicks = MSEC_TO_TICK(millisec); in OSA_SemaphoreWait()
563 if (TX_SUCCESS != tx_semaphore_get((TX_SEMAPHORE *)semaphoreHandle, timeoutTicks)) in OSA_SemaphoreWait()
632 uint32_t timeoutTicks; in OSA_MutexLock() local
636 timeoutTicks = TX_WAIT_FOREVER; in OSA_MutexLock()
640 timeoutTicks = MSEC_TO_TICK(millisec); in OSA_MutexLock()
643 if (TX_SUCCESS != tx_mutex_get((TX_MUTEX *)mutexHandle, timeoutTicks)) in OSA_MutexLock()
829 uint32_t timeoutTicks; in OSA_EventWait() local
[all …]
Dfsl_os_abstraction_free_rtos.c603 uint32_t timeoutTicks; in OSA_SemaphoreWait() local
610 timeoutTicks = portMAX_DELAY; in OSA_SemaphoreWait()
614 timeoutTicks = MSEC_TO_TICK(millisec); in OSA_SemaphoreWait()
617 if (((BaseType_t)0) == (BaseType_t)xSemaphoreTake(sem, timeoutTicks)) in OSA_SemaphoreWait()
719 uint32_t timeoutTicks; in OSA_MutexLock() local
725 timeoutTicks = portMAX_DELAY; in OSA_MutexLock()
729 timeoutTicks = MSEC_TO_TICK(millisec); in OSA_MutexLock()
732 if (((BaseType_t)0) == (BaseType_t)xSemaphoreTakeRecursive(mutex, timeoutTicks)) in OSA_MutexLock()
961 uint32_t timeoutTicks; in OSA_EventWait() local
975 timeoutTicks = portMAX_DELAY; in OSA_EventWait()
[all …]