KasperskyOS Community Edition 1.1
Contents
Contents
KosQueueFree()
This function is declared in the kos/queue.h
file.
void KosQueueFree(KosQueueHandle queue, void *obj);
This function frees the memory occupied by object obj
in the buffer of the specified queue
.
The obj
pointer can be received by calling the KosQueueAlloc()
or KosQueuePop()
function.
For a usage example, see KosQueuePop()
.