gallium: minor code/comments clean-up
This commit is contained in:
@@ -33,30 +33,32 @@
|
||||
void
|
||||
u_mmDumpMemInfo(const struct mem_block *heap)
|
||||
{
|
||||
debug_printf("Memory heap %p:\n", (void *)heap);
|
||||
debug_printf("Memory heap %p:\n", (void *) heap);
|
||||
if (heap == 0) {
|
||||
debug_printf(" heap == 0\n");
|
||||
} else {
|
||||
}
|
||||
else {
|
||||
const struct mem_block *p;
|
||||
|
||||
for(p = heap->next; p != heap; p = p->next) {
|
||||
debug_printf(" Offset:%08x, Size:%08x, %c%c\n",p->ofs,p->size,
|
||||
p->free ? 'F':'.',
|
||||
p->reserved ? 'R':'.');
|
||||
for (p = heap->next; p != heap; p = p->next) {
|
||||
debug_printf(" Offset:%08x, Size:%08x, %c%c\n", p->ofs, p->size,
|
||||
p->free ? 'F':'.',
|
||||
p->reserved ? 'R':'.');
|
||||
}
|
||||
|
||||
debug_printf("\nFree list:\n");
|
||||
|
||||
for(p = heap->next_free; p != heap; p = p->next_free) {
|
||||
debug_printf(" FREE Offset:%08x, Size:%08x, %c%c\n",p->ofs,p->size,
|
||||
p->free ? 'F':'.',
|
||||
p->reserved ? 'R':'.');
|
||||
for (p = heap->next_free; p != heap; p = p->next_free) {
|
||||
debug_printf(" FREE Offset:%08x, Size:%08x, %c%c\n", p->ofs, p->size,
|
||||
p->free ? 'F':'.',
|
||||
p->reserved ? 'R':'.');
|
||||
}
|
||||
|
||||
}
|
||||
debug_printf("End of memory blocks\n");
|
||||
}
|
||||
|
||||
|
||||
struct mem_block *
|
||||
u_mmInit(int ofs, int size)
|
||||
{
|
||||
|
||||
@@ -84,7 +84,7 @@ extern struct mem_block *u_mmFindBlock(struct mem_block *heap, int start);
|
||||
extern void u_mmDestroy(struct mem_block *mmInit);
|
||||
|
||||
/**
|
||||
* For debuging purpose.
|
||||
* For debugging purposes.
|
||||
*/
|
||||
extern void u_mmDumpMemInfo(const struct mem_block *mmInit);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user