![]() |
PDK Documentation
|
Queue Handling routines for RTOS.
============================================================================
Go to the source code of this file.
Data Structures | |
| struct | Osal_Queue_Elem |
| Function to write back and invalidate cache lines. More... | |
Typedefs | |
| typedef void * | Osal_Queue_Handle |
Functions | |
| void | Osal_Queue_construct (void *structPtr, const void *queueParams) |
| Function to construct the queue. More... | |
| Osal_Queue_Handle | Osal_Queue_handle (void *structPtr) |
| Function to return the queue handle from the structure. More... | |
| bool | Osal_Queue_empty (Osal_Queue_Handle queueHandle) |
| Function to empty the queue. More... | |
| void * | Osal_Queue_get (Osal_Queue_Handle queueHandle) |
| Function to return the element at the front of the queue. More... | |
| void | Osal_Queue_put (Osal_Queue_Handle queueHandle, Osal_Queue_Elem *ptr) |
| Function to put the element to the queue. More... | |