|
|
|
|
Documentation |
|
Main Page Namespace List Class Hierarchy Alphabetical List Compound List File List Namespace Members Compound Members File Members Related Pages Search
NLMISC::CMutex Class ReferenceClassic mutex implementation Don't assume the mutex are recursive (ie don't call enter() several times on the same mutex from the same thread without having called leave()) ; and don't assume either the threads are woken-up in the same order as they were put to sleep !
More...
#include <mutex.h>
List of all members.
Detailed Description
Classic mutex implementation Don't assume the mutex are recursive (ie don't call enter() several times on the same mutex from the same thread without having called leave()) ; and don't assume either the threads are woken-up in the same order as they were put to sleep !
CMutex m;
m.enter ();
m.leave (); -
Author(s):
-
Vianney Lecroart, Olivier Cado , Nevrax France
-
Date:
-
2000
Definition at line 59 of file mutex.h.
Constructor & Destructor Documentation
NLMISC::CMutex::CMutex (
|
)
|
|
NLMISC::CMutex::~CMutex (
|
)
|
|
Member Function Documentation
void NLMISC::CMutex::enter (
|
)
|
|
void NLMISC::CMutex::leave (
|
)
|
|
The documentation for this class was generated from the following files:
|
|