Parent Directory
|
Revision Log
Initial revision
| 1 | bearsoft | 1.1 | #include "MutexHandler.h" |
| 2 | |||
| 3 | MutexHandler::MutexHandler(){} | ||
| 4 | MutexHandler::~MutexHandler(){} | ||
| 5 | |||
| 6 | #ifdef linux | ||
| 7 | |||
| 8 | pthread_mutex_t mut=PTHREAD_MUTEX_INITIALIZER; | ||
| 9 | |||
| 10 | pthread_mutex_t MutexHandler::getMutex() | ||
| 11 | { | ||
| 12 | return mut; | ||
| 13 | } | ||
| 14 | |||
| 15 | #endif | ||
| 16 |
| root@recompile.se | ViewVC Help |
| Powered by ViewVC 1.1.26 |