summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_event_info.h
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2023-04-29 21:10:09 +0200
committerLiam <byteslice@airmail.cc>2023-04-30 04:11:32 +0200
commitb143ce8134cc851d065410ba3a825cc6a5bf34e0 (patch)
tree9180ba87fe3472b60f64bb5256177d511a9b6936 /src/core/hle/kernel/k_event_info.h
parentcommon: add intrusive list type (diff)
downloadyuzu-b143ce8134cc851d065410ba3a825cc6a5bf34e0.tar
yuzu-b143ce8134cc851d065410ba3a825cc6a5bf34e0.tar.gz
yuzu-b143ce8134cc851d065410ba3a825cc6a5bf34e0.tar.bz2
yuzu-b143ce8134cc851d065410ba3a825cc6a5bf34e0.tar.lz
yuzu-b143ce8134cc851d065410ba3a825cc6a5bf34e0.tar.xz
yuzu-b143ce8134cc851d065410ba3a825cc6a5bf34e0.tar.zst
yuzu-b143ce8134cc851d065410ba3a825cc6a5bf34e0.zip
Diffstat (limited to 'src/core/hle/kernel/k_event_info.h')
-rw-r--r--src/core/hle/kernel/k_event_info.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core/hle/kernel/k_event_info.h b/src/core/hle/kernel/k_event_info.h
index 25b3ff594..eacfa5dc6 100644
--- a/src/core/hle/kernel/k_event_info.h
+++ b/src/core/hle/kernel/k_event_info.h
@@ -5,14 +5,15 @@
#include <array>
-#include <boost/intrusive/list.hpp>
+#include "common/intrusive_list.h"
#include "core/hle/kernel/slab_helpers.h"
#include "core/hle/kernel/svc_types.h"
namespace Kernel {
-class KEventInfo : public KSlabAllocated<KEventInfo>, public boost::intrusive::list_base_hook<> {
+class KEventInfo : public KSlabAllocated<KEventInfo>,
+ public Common::IntrusiveListBaseNode<KEventInfo> {
public:
struct InfoCreateThread {
u32 thread_id{};