summaryrefslogtreecommitdiff
path: root/games/dangerdeep/files/patch-src__mutex.h
diff options
context:
space:
mode:
Diffstat (limited to 'games/dangerdeep/files/patch-src__mutex.h')
-rw-r--r--games/dangerdeep/files/patch-src__mutex.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/games/dangerdeep/files/patch-src__mutex.h b/games/dangerdeep/files/patch-src__mutex.h
new file mode 100644
index 000000000000..e769fdb33b8d
--- /dev/null
+++ b/games/dangerdeep/files/patch-src__mutex.h
@@ -0,0 +1,20 @@
+--- ./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