kern: update for 11.0.1
This commit is contained in:
@@ -30,9 +30,10 @@ namespace ams::kern {
|
||||
KThread *thread;
|
||||
};
|
||||
private:
|
||||
ThreadListNode *thread_list_root;
|
||||
ThreadListNode *thread_list_head;
|
||||
ThreadListNode *thread_list_tail;
|
||||
protected:
|
||||
constexpr ALWAYS_INLINE explicit KSynchronizationObject() : KAutoObjectWithList(), thread_list_root() { MESOSPHERE_ASSERT_THIS(); }
|
||||
constexpr ALWAYS_INLINE explicit KSynchronizationObject() : KAutoObjectWithList(), thread_list_head(), thread_list_tail() { MESOSPHERE_ASSERT_THIS(); }
|
||||
virtual ~KSynchronizationObject() { MESOSPHERE_ASSERT_THIS(); }
|
||||
|
||||
virtual void OnFinalizeSynchronizationObject() { MESOSPHERE_ASSERT_THIS(); }
|
||||
|
||||
Reference in New Issue
Block a user