summaryrefslogtreecommitdiffstats
path: root/cpukit/libmisc/shell/print_heapinfo.c
blob: 45cb8e82382e31b192eb229ffae253e3d0fde703 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/*
 *  Print Heap Information Structure
 *
 *  COPYRIGHT (c) 1989-2008.
 *  On-Line Applications Research Corporation (OAR).
 *
 *  The license and distribution terms for this file may be
 *  found in the file LICENSE in this distribution or at
 *  http://www.rtems.org/license/LICENSE.
 */

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#include <inttypes.h>
#include <stdio.h>

#include "internal.h"

void rtems_shell_print_heap_info(
  const char             *c,
  const Heap_Information *h
)
{
  printf(
    "Number of %s blocks:                    %12" PRIuPTR "\n"
    "Largest %s block:                       %12" PRIuPTR "\n"
    "Total bytes %s:                         %12" PRIuPTR "\n",
    c, h->number,
    c, h->largest,
    c, h->total
  );
}

void rtems_shell_print_heap_stats(
  const Heap_Statistics *s
)
{
  printf(
    "Size of the allocatable area in bytes:    %12" PRIuPTR "\n"
    "Minimum free size ever in bytes:          %12" PRIuPTR "\n"
    "Maximum number of free blocks ever:       %12" PRIu32 "\n"
    "Maximum number of blocks searched ever:   %12" PRIu32 "\n"
    "Lifetime number of bytes allocated:       %12" PRIu64 "\n"
    "Lifetime number of bytes freed:           %12" PRIu64 "\n"
    "Total number of searches:                 %12" PRIu32 "\n"
    "Total number of successful allocations:   %12" PRIu32 "\n"
    "Total number of failed allocations:       %12" PRIu32 "\n"
    "Total number of successful frees:         %12" PRIu32 "\n"
    "Total number of successful resizes:       %12" PRIu32 "\n",
    s->size,
    s->min_free_size,
    s->max_free_blocks,
    s->max_search,
    s->lifetime_allocated,
    s->lifetime_freed,
    s->searches,
    s->allocs,
    s->failed_allocs,
    s->frees,
    s->resizes
  );
}