summaryrefslogtreecommitdiff
path: root/src/util
diff options
context:
space:
mode:
authorkwolekr <kwolekr@minetest.net>2013-09-15 23:00:01 -0400
committerkwolekr <kwolekr@minetest.net>2013-09-15 23:00:01 -0400
commitd308352dbd4121d12d4f44d591463468c09d37f9 (patch)
treee0f0e00e10dfb44ef17ce1b4b2c2188d02a68cfb /src/util
parent3c4734d69a44aea133e5bd7df66a5dedb87785fb (diff)
downloadminetest-d308352dbd4121d12d4f44d591463468c09d37f9.tar.gz
minetest-d308352dbd4121d12d4f44d591463468c09d37f9.tar.bz2
minetest-d308352dbd4121d12d4f44d591463468c09d37f9.zip
Always use builtin JThread library
Diffstat (limited to 'src/util')
-rw-r--r--src/util/container.h4
-rw-r--r--src/util/thread.h6
2 files changed, 5 insertions, 5 deletions
diff --git a/src/util/container.h b/src/util/container.h
index d5854909a..89daa3fbc 100644
--- a/src/util/container.h
+++ b/src/util/container.h
@@ -22,8 +22,8 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include "../irrlichttypes.h"
#include "../exceptions.h"
-#include <jmutex.h>
-#include <jmutexautolock.h>
+#include "../jthread/jmutex.h"
+#include "../jthread/jmutexautolock.h"
#include "../porting.h" // For sleep_ms
#include <list>
#include <vector>
diff --git a/src/util/thread.h b/src/util/thread.h
index 6b2cf5b6c..678d9cf9b 100644
--- a/src/util/thread.h
+++ b/src/util/thread.h
@@ -21,9 +21,9 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#define UTIL_THREAD_HEADER
#include "../irrlichttypes.h"
-#include <jthread.h>
-#include <jmutex.h>
-#include <jmutexautolock.h>
+#include "../jthread/jthread.h"
+#include "../jthread/jmutex.h"
+#include "../jthread/jmutexautolock.h"
template<typename T>
class MutexedVariable