* Added RemoveTail() method.
* Renamed DoublyLinkedList::Size() to Count(), since it actually counts the items (ie. O(n)). git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@29979 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -264,7 +264,7 @@ ConditionVariable::ListAll()
|
||||
ConditionVariableHash::Iterator it(&sConditionVariableHash);
|
||||
while (ConditionVariable* variable = it.Next()) {
|
||||
// count waiting threads
|
||||
int count = variable->fEntries.Size();
|
||||
int count = variable->fEntries.Count();
|
||||
|
||||
kprintf("%p %p %-20s %15d\n", variable, variable->fObject,
|
||||
variable->fObjectType, count);
|
||||
|
||||
Reference in New Issue
Block a user