NAME
ACE_cond_t -
This structure is used to implement condition variables on NT.
SYNOPSIS
#include <ace/OS.h>
struct ACE_cond_t
{
public:
DWORD waiters_;
ACE_sema_t sema_;
};
DESCRIPTION
At the current time, this stuff only works for threads
within the same process.
PUBLIC MEMBERS
DWORD waiters_;
Number of waiting threads.
ACE_sema_t sema_;
Queue up threads waiting for the condition to become signaled.
AUTHOR
Doug Schmidt schmidt@cs.wustl.edu
, Jesper S. M|ller
stophph@diku.dk
, and a cast of thousands...
LIBRARY
ace