rtxStack.h File Reference
#include "rtxsrc/rtxDList.h"
Go to the source code of this file.
Classes | |
struct | _OSRTStack |
Defines | |
#define | rtxStackIsEmpty(stack) (OSBOOL)((stack).dlist.count == 0) |
Typedefs | |
typedef struct _OSRTStack | OSRTStack |
Functions | |
OSRTStack * | rtxStackCreate (struct OSCTXT *pctxt) |
void | rtxStackInit (struct OSCTXT *pctxt, OSRTStack *pStack) |
void * | rtxStackPop (OSRTStack *pStack) |
int | rtxStackPush (OSRTStack *pStack, void *pData) |
void * | rtxStackPeek (OSRTStack *pStack) |
Detailed Description
Simple FIFO stack for storing void pointers to any type of data.