diff --git a/headers/private/kernel/condition_variable.h b/headers/private/kernel/condition_variable.h index e57dd67df5..6648fe5f13 100644 --- a/headers/private/kernel/condition_variable.h +++ b/headers/private/kernel/condition_variable.h @@ -86,14 +86,14 @@ private: protected: typedef DoublyLinkedList EntryList; + ConditionVariable* fNext; + const void* fObject; const char* fObjectType; spinlock fLock; - EntryList fEntries; int32 fEntriesCount; - - ConditionVariable* fNext; + EntryList fEntries; friend struct ConditionVariableEntry; friend struct ConditionVariableHashDefinition;