summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/thread.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-07-31 14:06:09 +0200
committerLioncash <mathew1800@gmail.com>2018-07-31 16:15:17 +0200
commita2304fad16d7a89741241ca8215a21bd02cce5e7 (patch)
treeb7fc29c08a4534090b39427c6709f1391147adab /src/core/hle/kernel/thread.cpp
parentMerge pull request #855 from bunnei/cubeb (diff)
downloadyuzu-a2304fad16d7a89741241ca8215a21bd02cce5e7.tar
yuzu-a2304fad16d7a89741241ca8215a21bd02cce5e7.tar.gz
yuzu-a2304fad16d7a89741241ca8215a21bd02cce5e7.tar.bz2
yuzu-a2304fad16d7a89741241ca8215a21bd02cce5e7.tar.lz
yuzu-a2304fad16d7a89741241ca8215a21bd02cce5e7.tar.xz
yuzu-a2304fad16d7a89741241ca8215a21bd02cce5e7.tar.zst
yuzu-a2304fad16d7a89741241ca8215a21bd02cce5e7.zip
Diffstat (limited to 'src/core/hle/kernel/thread.cpp')
-rw-r--r--src/core/hle/kernel/thread.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/core/hle/kernel/thread.cpp b/src/core/hle/kernel/thread.cpp
index 94735c86e..93ea58a1e 100644
--- a/src/core/hle/kernel/thread.cpp
+++ b/src/core/hle/kernel/thread.cpp
@@ -4,8 +4,11 @@
#include <algorithm>
#include <cinttypes>
-#include <list>
#include <vector>
+
+#include <boost/optional.hpp>
+#include <boost/range/algorithm_ext/erase.hpp>
+
#include "common/assert.h"
#include "common/common_types.h"
#include "common/logging/log.h"
@@ -19,7 +22,6 @@
#include "core/hle/kernel/handle_table.h"
#include "core/hle/kernel/kernel.h"
#include "core/hle/kernel/memory.h"
-#include "core/hle/kernel/mutex.h"
#include "core/hle/kernel/process.h"
#include "core/hle/kernel/thread.h"
#include "core/hle/result.h"