Lines Matching refs:timeout

193 #define osWaitForever           0xFFFFFFFFU ///< Wait forever timeout value.
247 osErrorTimeout = -2, ///< Operation not completed within the timeout period.
576 /// \param[in] timeout \ref CMSIS_RTOS_TimeOutValue or 0 in case of no time-out.
578 uint32_t osThreadFlagsWait (uint32_t flags, uint32_t options, uint32_t timeout);
664 /// \param[in] timeout \ref CMSIS_RTOS_TimeOutValue or 0 in case of no time-out.
666 uint32_t osEventFlagsWait (osEventFlagsId_t ef_id, uint32_t flags, uint32_t options, uint32_t timeout);
686 /// Acquire a Mutex or timeout if it is locked.
688 /// \param[in] timeout \ref CMSIS_RTOS_TimeOutValue or 0 in case of no time-out.
690 osStatus_t osMutexAcquire (osMutexId_t mutex_id, uint32_t timeout);
722 /// Acquire a Semaphore token or timeout if no tokens are available.
724 /// \param[in] timeout \ref CMSIS_RTOS_TimeOutValue or 0 in case of no time-out.
726 osStatus_t osSemaphoreAcquire (osSemaphoreId_t semaphore_id, uint32_t timeout);
760 /// \param[in] timeout \ref CMSIS_RTOS_TimeOutValue or 0 in case of no time-out.
762 void *osMemoryPoolAlloc (osMemoryPoolId_t mp_id, uint32_t timeout);
810 /// Put a Message into a Queue or timeout if Queue is full.
814 /// \param[in] timeout \ref CMSIS_RTOS_TimeOutValue or 0 in case of no time-out.
816 osStatus_t osMessageQueuePut (osMessageQueueId_t mq_id, const void *msg_ptr, uint8_t msg_prio, uint32_t timeout);
818 /// Get a Message from a Queue or timeout if Queue is empty.
822 /// \param[in] timeout \ref CMSIS_RTOS_TimeOutValue or 0 in case of no time-out.
824 osStatus_t osMessageQueueGet (osMessageQueueId_t mq_id, void *msg_ptr, uint8_t *msg_prio, uint32_t timeout);