PDK API Guide for J721E
Queue.h File Reference

Introduction

Queue Handling routines for RTOS.

============================================================================


Go to the source code of this file.

Data Structures

struct  Osal_Queue_Elem
 Queue element. 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 perform queue empty chcek. 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...