Skip to content

Commit

Permalink
Fix formatting in malloc_info
Browse files Browse the repository at this point in the history
  • Loading branch information
Siddhesh Poyarekar committed May 30, 2014
1 parent 4d653a5 commit 62a5881
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 10 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2014-05-30 Siddhesh Poyarekar <siddhesh@redhat.com>

* malloc/malloc (malloc_info): Fix formatting.

2014-05-30 Siddhesh Poyarekar <siddhesh@redhat.com>
Roland McGrath <roland@hack.frob.com>

Expand Down
20 changes: 10 additions & 10 deletions malloc/malloc.c
Original file line number Diff line number Diff line change
Expand Up @@ -5146,18 +5146,18 @@ malloc_info (int options, FILE *fp)
while (ar_ptr != &main_arena);

fprintf (fp,
"<total type=\"fast\" count=\"%zu\" size=\"%zu\"/>\n"
"<total type=\"rest\" count=\"%zu\" size=\"%zu\"/>\n"
"<total type=\"fast\" count=\"%zu\" size=\"%zu\"/>\n"
"<total type=\"rest\" count=\"%zu\" size=\"%zu\"/>\n"
"<total type=\"mmap\" count=\"%zu\" size=\"%zu\"/>\n"
"<system type=\"current\" size=\"%zu\"/>\n"
"<system type=\"max\" size=\"%zu\"/>\n"
"<aspace type=\"total\" size=\"%zu\"/>\n"
"<aspace type=\"mprotect\" size=\"%zu\"/>\n"
"</malloc>\n",
total_nfastblocks, total_fastavail, total_nblocks, total_avail,
"<system type=\"current\" size=\"%zu\"/>\n"
"<system type=\"max\" size=\"%zu\"/>\n"
"<aspace type=\"total\" size=\"%zu\"/>\n"
"<aspace type=\"mprotect\" size=\"%zu\"/>\n"
"</malloc>\n",
total_nfastblocks, total_fastavail, total_nblocks, total_avail,
mp_.n_mmaps, mp_.mmapped_mem,
total_system, total_max_system,
total_aspace, total_aspace_mprotect);
total_system, total_max_system,
total_aspace, total_aspace_mprotect);

return 0;
}
Expand Down

0 comments on commit 62a5881

Please sign in to comment.