From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from mail-we0-x22c.google.com ([2a00:1450:400c:c03::22c]) by bombadil.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1WqIi8-0002Bd-P3 for barebox@lists.infradead.org; Fri, 30 May 2014 09:02:49 +0000 Received: by mail-we0-f172.google.com with SMTP id k48so1674164wev.3 for ; Fri, 30 May 2014 02:02:26 -0700 (PDT) From: Holger Schurig Date: Fri, 30 May 2014 11:07:32 +0200 Message-Id: <1401440856-6145-7-git-send-email-holgerschurig@gmail.com> In-Reply-To: <1401440856-6145-1-git-send-email-holgerschurig@gmail.com> References: <1401440856-6145-1-git-send-email-holgerschurig@gmail.com> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "barebox" Errors-To: barebox-bounces+u.kleine-koenig=pengutronix.de@lists.infradead.org Subject: [PATCH 06/10] meminfo: purely cosmetical changes To: barebox@lists.infradead.org Signed-off-by: Holger Schurig --- common/dlmalloc.c | 8 ++++---- common/tlsf_malloc.c | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/common/dlmalloc.c b/common/dlmalloc.c index f006206..d831e90 100644 --- a/common/dlmalloc.c +++ b/common/dlmalloc.c @@ -1942,13 +1942,13 @@ static void malloc_update_mallinfo(void) void malloc_stats(void) { malloc_update_mallinfo(); - printf("max system bytes = %10u\n", (unsigned int)(max_total_mem)); - printf("system bytes = %10u\n", + printf("Maximum system memory: %u\n", (unsigned int)(max_total_mem)); + printf("Current system memory: %u\n", (unsigned int)(sbrked_mem + mmapped_mem)); - printf("in use bytes = %10u\n", + printf("in use: %u\n", (unsigned int)(current_mallinfo.uordblks + mmapped_mem)); #if HAVE_MMAP - fprintf(stderr, "max mmap regions = %10u\n", + printf("Maximum mmap'ed mmap regions: %u\n", (unsigned int) max_n_mmaps); #endif } diff --git a/common/tlsf_malloc.c b/common/tlsf_malloc.c index aa8fc13..a3541d8 100644 --- a/common/tlsf_malloc.c +++ b/common/tlsf_malloc.c @@ -97,5 +97,5 @@ void malloc_stats(void) tlsf_walk_heap(tlsf_mem_pool, malloc_walker, &s); - printf("used: %10zu\nfree: %10zu\n", s.used, s.free); + printf("used: %zu\nfree: %zu\n", s.used, s.free); } -- 1.7.10.4 _______________________________________________ barebox mailing list barebox@lists.infradead.org http://lists.infradead.org/mailman/listinfo/barebox