opnsense-ports/games/dangerdeep/files/patch-src__mutex.h
Franco Fichtner 8cb1a96ede ports: pull in a snapshot of the FreeBSD ports tree
Taken from:	https://github.com/freebsd/freebsd-ports.git
Commit id:	5070672073b68be364139bc6b3a89100bd17d331
2014-11-09 14:03:21 +01:00

20 lines
639 B
C++

--- ./src/mutex.h.orig 2007-06-11 11:16:23.000000000 -0400
+++ ./src/mutex.h 2014-08-11 09:59:15.000000000 -0400
@@ -58,7 +58,7 @@
class mutex_locker
{
protected:
- mutex& mymutex;
+ ::mutex& mymutex;
private:
mutex_locker();
mutex_locker(const mutex_locker& );
@@ -67,7 +67,7 @@
/// create mutex locker
///@param mtx - mutex to lock
///@note will instantly lock the mutex that was given as parameter
- mutex_locker(mutex& mtx) : mymutex(mtx) { mymutex.lock(); }
+ mutex_locker(::mutex& mtx) : mymutex(mtx) { mymutex.lock(); }
/// destroy mutex locker
///@note will unlock the mutex that was given to the constructor