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_;
ACE_sema_t sema_;

AUTHOR

Doug Schmidt schmidt@cs.wustl.edu, Jesper S. M|ller stophph@diku.dk, and a cast of thousands...

LIBRARY

ace