* Also print the maximum full count, and the magazine capacity when being

dumped.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35603 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2010-02-24 15:08:52 +00:00
parent f52b12e51a
commit 6426413dcb
1 changed files with 4 additions and 2 deletions

View File

@ -356,8 +356,10 @@ object_depot_make_empty(object_depot* depot, uint32 flags)
void
dump_object_depot(object_depot* depot)
{
kprintf(" full: %p, count %lu\n", depot->full, depot->full_count);
kprintf(" empty: %p, count %lu\n", depot->empty, depot->empty_count);
kprintf(" full: %p, count %lu\n", depot->full, depot->full_count);
kprintf(" empty: %p, count %lu\n", depot->empty, depot->empty_count);
kprintf(" max full: %lu\n", depot->max_count);
kprintf(" capacity: %lu\n", depot->magazine_capacity);
kprintf(" stores:\n");
int cpuCount = smp_get_num_cpus();