1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-30 22:43:12 +03:00

Fix formatting in malloc_info

This commit is contained in:
Siddhesh Poyarekar
2014-05-30 22:44:45 +05:30
parent 4d653a59ff
commit 62a5881678
2 changed files with 14 additions and 10 deletions

View File

@ -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> 2014-05-30 Siddhesh Poyarekar <siddhesh@redhat.com>
Roland McGrath <roland@hack.frob.com> Roland McGrath <roland@hack.frob.com>

View File

@ -5146,18 +5146,18 @@ malloc_info (int options, FILE *fp)
while (ar_ptr != &main_arena); while (ar_ptr != &main_arena);
fprintf (fp, fprintf (fp,
"<total type=\"fast\" count=\"%zu\" size=\"%zu\"/>\n" "<total type=\"fast\" count=\"%zu\" size=\"%zu\"/>\n"
"<total type=\"rest\" count=\"%zu\" size=\"%zu\"/>\n" "<total type=\"rest\" count=\"%zu\" size=\"%zu\"/>\n"
"<total type=\"mmap\" count=\"%zu\" size=\"%zu\"/>\n" "<total type=\"mmap\" count=\"%zu\" size=\"%zu\"/>\n"
"<system type=\"current\" size=\"%zu\"/>\n" "<system type=\"current\" size=\"%zu\"/>\n"
"<system type=\"max\" size=\"%zu\"/>\n" "<system type=\"max\" size=\"%zu\"/>\n"
"<aspace type=\"total\" size=\"%zu\"/>\n" "<aspace type=\"total\" size=\"%zu\"/>\n"
"<aspace type=\"mprotect\" size=\"%zu\"/>\n" "<aspace type=\"mprotect\" size=\"%zu\"/>\n"
"</malloc>\n", "</malloc>\n",
total_nfastblocks, total_fastavail, total_nblocks, total_avail, total_nfastblocks, total_fastavail, total_nblocks, total_avail,
mp_.n_mmaps, mp_.mmapped_mem, mp_.n_mmaps, mp_.mmapped_mem,
total_system, total_max_system, total_system, total_max_system,
total_aspace, total_aspace_mprotect); total_aspace, total_aspace_mprotect);
return 0; return 0;
} }