summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/thread.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-08-01 04:16:05 +0200
committerGitHub <noreply@github.com>2018-08-01 04:16:05 +0200
commitf5efac34428682189139ff63648014416f4b683c (patch)
tree5f42e54895af9a3e5da3afaaf66c1d8948207320 /src/core/hle/kernel/thread.cpp
parentMerge pull request #879 from lioncash/audio (diff)
parentkernel: Remove unnecessary includes (diff)
downloadyuzu-f5efac34428682189139ff63648014416f4b683c.tar
yuzu-f5efac34428682189139ff63648014416f4b683c.tar.gz
yuzu-f5efac34428682189139ff63648014416f4b683c.tar.bz2
yuzu-f5efac34428682189139ff63648014416f4b683c.tar.lz
yuzu-f5efac34428682189139ff63648014416f4b683c.tar.xz
yuzu-f5efac34428682189139ff63648014416f4b683c.tar.zst
yuzu-f5efac34428682189139ff63648014416f4b683c.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"