Synchronized queue?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I'm porting an application from a Unix like system to Windows.
I'm looking for a simple queue with FIFO characteristics which
will cause the calling thread to suspend if there is no data on the
queue, or return after a timeout.

Is there any such component available or will I need to build one?

I'm using Visual Studio 2005, VC++.
 
frmdeveloper said:
I'm porting an application from a Unix like system to Windows.
I'm looking for a simple queue with FIFO characteristics which
will cause the calling thread to suspend if there is no data on the
queue, or return after a timeout.

Is there any such component available or will I need to build one?

I'm using Visual Studio 2005, VC++.

See the answer(s) in microsoft.public.vc.langauge.

-cd
 
Back
Top