From: Kursat on
Hi,

Is there any native Windows FIFO list API which is supported by Windows XP.
It seems that InterlockedSList API only supports LIFO.

Thanks in advance.


From: Chris M. Thomasson on
"Kursat" <xx(a)yy.com> wrote in message
news:uRjKAIeoKHA.4628(a)TK2MSFTNGP06.phx.gbl...
> Hi,
>
> Is there any native Windows FIFO list API which is supported by Windows
> XP.

AFAICT, no there is not a non-blocking FIFO API.




> It seems that InterlockedSList API only supports LIFO.
>
> Thanks in advance.

Well, you can do a FIFO using a LIFO by flushing the list and reversing the
order of the nodes.