You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
549 B
20 lines
549 B
///+---------------------------------------------------------------------------
|
|
//
|
|
// File: Sem.Hxx
|
|
//
|
|
// Contents: Semaphore classes
|
|
//
|
|
// Classes: CMutexSem - Mutex semaphore class
|
|
// CShareSem - Multiple Reader, Single Writer class
|
|
// CEventSem - Event semaphore
|
|
//
|
|
// History: 21-Jun-91 AlexT Created.
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#ifndef __SEM_HXX__
|
|
#define __SEM_HXX__
|
|
|
|
#include <sem32.hxx>
|
|
|
|
#endif /* __SEM_HXX__ */
|