summaryrefslogtreecommitdiff
path: root/src/threading
diff options
context:
space:
mode:
Diffstat (limited to 'src/threading')
-rw-r--r--src/threading/mutex.h2
-rw-r--r--src/threading/semaphore.h2
-rw-r--r--src/threading/thread.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/threading/mutex.h b/src/threading/mutex.h
index 62a482787..40b10a2ea 100644
--- a/src/threading/mutex.h
+++ b/src/threading/mutex.h
@@ -44,7 +44,7 @@ DEALINGS IN THE SOFTWARE.
#include <pthread.h>
#endif
-#include "basicmacros.h"
+#include "util/basic_macros.h"
class Mutex
{
diff --git a/src/threading/semaphore.h b/src/threading/semaphore.h
index 736f2bc78..822856396 100644
--- a/src/threading/semaphore.h
+++ b/src/threading/semaphore.h
@@ -28,7 +28,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include <semaphore.h>
#endif
-#include "basicmacros.h"
+#include "util/basic_macros.h"
class Semaphore {
public:
diff --git a/src/threading/thread.h b/src/threading/thread.h
index 5f2d8aad1..6a24afffb 100644
--- a/src/threading/thread.h
+++ b/src/threading/thread.h
@@ -26,7 +26,7 @@ DEALINGS IN THE SOFTWARE.
#ifndef THREADING_THREAD_H
#define THREADING_THREAD_H
-#include "basicmacros.h"
+#include "util/basic_macros.h"
#include "threading/atomic.h"
#include "threading/mutex.h"
#include "threads.h"