]> git.sesse.net Git - cubemap/blob - mutexlock.cpp
When we get a header, retroactively send it out to all clients that have received...
[cubemap] / mutexlock.cpp
1 #include "mutexlock.h"
2
3 MutexLock::MutexLock(pthread_mutex_t *mutex)
4         : mutex(mutex)
5 {
6         pthread_mutex_lock(mutex);
7 }
8
9 MutexLock::~MutexLock()
10 {
11         pthread_mutex_unlock(mutex);
12 }
13