1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
#ifndef THREADING_H_
#define THREADING_H_
#include <iostream>
#include "tinythread.h"
#include "fast_mutex.h"
#ifdef NO_SPINLOCK
# define MUTEX_T tthread::mutex
#else
# define MUTEX_T tthread::fast_mutex
#endif /* NO_SPINLOCK */
/**
* Wrap a lock; obtain lock upon construction, release upon destruction.
*/
class ThreadSafe {
public:
ThreadSafe(MUTEX_T* ptr_mutex, bool locked = true) {
if(locked) {
this->ptr_mutex = ptr_mutex;
ptr_mutex->lock();
}
else
this->ptr_mutex = NULL;
}
~ThreadSafe() {
if (ptr_mutex != NULL)
ptr_mutex->unlock();
}
private:
MUTEX_T *ptr_mutex;
};
#endif
|