summaryrefslogtreecommitdiffstats
path: root/testsuites/libtests
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-07-08 19:15:04 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-07-08 19:15:04 +0000
commit4b6c378fabdafeecfd63904db765a514cb55d800 (patch)
tree76e3d8aabec58c546cbd5ac087a4ef218197dce8 /testsuites/libtests
parent2009-07-08 Joel Sherrill <joel.sherrill@OARcorp.com> (diff)
downloadrtems-4b6c378fabdafeecfd63904db765a514cb55d800.tar.bz2
2009-07-08 Joel Sherrill <joel.sherrill@OARcorp.com>
* malloctest/init.c, malloctest/malloctest.scn: Add error cases for _Protected_heap_Get_information().
Diffstat (limited to 'testsuites/libtests')
-rw-r--r--testsuites/libtests/ChangeLog5
-rw-r--r--testsuites/libtests/malloctest/init.c17
-rw-r--r--testsuites/libtests/malloctest/malloctest.scn1400
3 files changed, 1094 insertions, 328 deletions
diff --git a/testsuites/libtests/ChangeLog b/testsuites/libtests/ChangeLog
index 6bcfa9258e..ea87c40b8f 100644
--- a/testsuites/libtests/ChangeLog
+++ b/testsuites/libtests/ChangeLog
@@ -1,3 +1,8 @@
+2009-07-08 Joel Sherrill <joel.sherrill@OARcorp.com>
+
+ * malloctest/init.c, malloctest/malloctest.scn: Add error cases for
+ _Protected_heap_Get_information().
+
2009-06-10 Joel Sherrill <joel.sherrill@OARcorp.com>
* heapwalk/init.c: Add test code for first free block pointer not
diff --git a/testsuites/libtests/malloctest/init.c b/testsuites/libtests/malloctest/init.c
index 34c1cf5265..f5792a6d25 100644
--- a/testsuites/libtests/malloctest/init.c
+++ b/testsuites/libtests/malloctest/init.c
@@ -11,7 +11,7 @@
*
* Output parameters: NONE
*
- * COPYRIGHT (c) 1989-2008.
+ * COPYRIGHT (c) 1989-2009.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -235,7 +235,21 @@ void test_heap_info(void)
sc = malloc_info( &the_info );
rtems_test_assert( sc == 0 );
rtems_test_assert( s1 == the_info.Free.largest );
+}
+
+void test_protected_heap_info(void)
+{
+ Heap_Control heap;
+ Heap_Information_block info;
+ bool rc;
+
+ puts( "_Protected_heap_Get_information - NULL heap" );
+ rc = _Protected_heap_Get_information( NULL, &info );
+ rtems_test_assert( rc == false );
+ puts( "_Protected_heap_Get_information - NULL info" );
+ rc = _Protected_heap_Get_information( &heap, NULL );
+ rtems_test_assert( rc == false );
}
/*
@@ -304,6 +318,7 @@ rtems_task Init(
test_heap_cases_1();
test_heap_extend();
test_heap_info();
+ test_protected_heap_info();
test_posix_memalign();
diff --git a/testsuites/libtests/malloctest/malloctest.scn b/testsuites/libtests/malloctest/malloctest.scn
index 1e75d9a8f7..92ac705317 100644
--- a/testsuites/libtests/malloctest/malloctest.scn
+++ b/testsuites/libtests/malloctest/malloctest.scn
@@ -1,468 +1,1214 @@
*** MALLOC TEST ***
+malloc_walk - normal path
+malloc_walk - in critical section path
+Heap Initialized
+heap extend - bad address
+heap extend - OK
+malloc_free_space - check malloc space drops after malloc
+malloc_free_space - verify free space returns to previous value
+malloc_info - called with NULL
+
+malloc_info - check free space drops after malloc
+malloc_info - verify free space returns to previous value
+_Protected_heap_Get_information - NULL heap
+_Protected_heap_Get_information - NULL info
+posix_memalign - NULL return pointer -- EINVAL
+posix_memalign - alignment of 0 -- EINVAL
+posix_memalign - alignment of 2-- EINVAL
+posix_memalign - alignment of 4 -- OK
+posix_memalign - alignment of 8 -- OK
+posix_memalign - alignment of 16 -- OK
+posix_memalign - alignment of 32 -- OK
+posix_memalign - alignment of 64 -- OK
+posix_memalign - alignment of 128 -- OK
+posix_memalign - alignment of 256 -- OK
+posix_memalign - alignment of 512 -- OK
+posix_memalign - alignment of 1024 -- OK
+posix_memalign - alignment of 2048 -- OK
+posix_memalign - alignment of 4096 -- OK
+posix_memalign - alignment of 8192 -- OK
+posix_memalign - alignment of 16384 -- OK
+posix_memalign - alignment of 32768 -- OK
+posix_memalign - alignment of 65536 -- OK
+posix_memalign - alignment of 131072 -- OK
+posix_memalign - alignment of 262144 -- OK
+posix_memalign - alignment of 524288 -- OK
+posix_memalign - alignment of 1048576 -- OK
+posix_memalign - alignment of 2097152 -- OK
+posix_memalign - alignment of 4194304 -- OK
+posix_memalign - ran out of memory trying 4194304
+posix_memalign - alignment of 4194304 -- SKIPPED
+posix_memalign - alignment of 8388608 -- SKIPPED
+posix_memalign - alignment of 16777216 -- SKIPPED
+posix_memalign - alignment of 33554432 -- SKIPPED
+posix_memalign - alignment of 67108864 -- SKIPPED
+posix_memalign - alignment of 134217728 -- SKIPPED
+posix_memalign - alignment of 268435456 -- SKIPPED
+posix_memalign - alignment of 536870912 -- SKIPPED
+posix_memalign - alignment of 1073741824 -- SKIPPED
TA1 - rtems_clock_get - 09:00:00 12/31/1988
-mallocing 513 bytes
+mallocing 690 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:13 free:30 realloc:4095 calloc:
TA2 - rtems_clock_get - 09:00:00 12/31/1988
-mallocing 513 bytes
+mallocing 690 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:14 free:30 realloc:4095 calloc:
TA3 - rtems_clock_get - 09:00:00 12/31/1988
-mallocing 513 bytes
+mallocing 690 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:15 free:30 realloc:4095 calloc:
TA4 - rtems_clock_get - 09:00:00 12/31/1988
-mallocing 513 bytes
+mallocing 690 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:16 free:30 realloc:4095 calloc:
TA5 - rtems_clock_get - 09:00:00 12/31/1988
-mallocing 513 bytes
+mallocing 690 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:17 free:30 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:00 12/31/1988
-mallocing 175 bytes
-TA2 - rtems_clock_get - 09:00:00 12/31/1988
-mallocing 175 bytes
-TA1 - rtems_clock_get - 09:00:00 12/31/1988
-mallocing 308 bytes
-TA3 - rtems_clock_get - 09:00:00 12/31/1988
-mallocing 175 bytes
-TA1 - rtems_clock_get - 09:00:00 12/31/1988
-mallocing 534 bytes
+mallocing 505 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:18 free:31 realloc:4095 calloc:
TA2 - rtems_clock_get - 09:00:01 12/31/1988
-mallocing 308 bytes
-TA4 - rtems_clock_get - 09:00:01 12/31/1988
-mallocing 175 bytes
+mallocing 505 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:19 free:32 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:01 12/31/1988
-mallocing 947 bytes
-TA5 - rtems_clock_get - 09:00:01 12/31/1988
-mallocing 175 bytes
+mallocing 591 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:20 free:33 realloc:4095 calloc:
+TA3 - rtems_clock_get - 09:00:01 12/31/1988
+mallocing 505 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:21 free:34 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:01 12/31/1988
-mallocing 171 bytes
+mallocing 554 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:22 free:35 realloc:4095 calloc:
TA2 - rtems_clock_get - 09:00:01 12/31/1988
-mallocing 534 bytes
-TA3 - rtems_clock_get - 09:00:01 12/31/1988
-mallocing 308 bytes
+mallocing 591 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:23 free:36 realloc:4095 calloc:
+TA4 - rtems_clock_get - 09:00:01 12/31/1988
+mallocing 505 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:24 free:37 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:01 12/31/1988
-mallocing 702 bytes
+mallocing 378 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:25 free:38 realloc:4095 calloc:
+TA5 - rtems_clock_get - 09:00:01 12/31/1988
+mallocing 505 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:26 free:39 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:01 12/31/1988
-mallocing 226 bytes
+mallocing 257 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:27 free:40 realloc:4095 calloc:
TA2 - rtems_clock_get - 09:00:02 12/31/1988
-mallocing 947 bytes
-TA4 - rtems_clock_get - 09:00:02 12/31/1988
-mallocing 308 bytes
-TA1 - rtems_clock_get - 09:00:02 12/31/1988
-mallocing 494 bytes
+mallocing 554 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:28 free:41 realloc:4095 calloc:
TA3 - rtems_clock_get - 09:00:02 12/31/1988
-mallocing 534 bytes
+mallocing 591 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:29 free:42 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:02 12/31/1988
-mallocing 124 bytes
-TA2 - rtems_clock_get - 09:00:02 12/31/1988
-mallocing 171 bytes
-TA5 - rtems_clock_get - 09:00:02 12/31/1988
-mallocing 308 bytes
+mallocing 207 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:30 free:43 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:02 12/31/1988
-mallocing 83 bytes
+mallocing 626 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:31 free:44 realloc:4095 calloc:
+TA2 - rtems_clock_get - 09:00:02 12/31/1988
+mallocing 378 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:32 free:45 realloc:4095 calloc:
+TA4 - rtems_clock_get - 09:00:02 12/31/1988
+mallocing 591 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:33 free:46 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:02 12/31/1988
-mallocing 389 bytes
+mallocing 340 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:34 free:47 realloc:4095 calloc:
+TA3 - rtems_clock_get - 09:00:02 12/31/1988
+mallocing 554 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:35 free:48 realloc:4095 calloc:
+TA1 - rtems_clock_get - 09:00:03 12/31/1988
+mallocing 843 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:36 free:49 realloc:4095 calloc:
TA2 - rtems_clock_get - 09:00:03 12/31/1988
-mallocing 702 bytes
-TA4 - rtems_clock_get - 09:00:03 12/31/1988
-mallocing 534 bytes
-TA3 - rtems_clock_get - 09:00:03 12/31/1988
-mallocing 947 bytes
+mallocing 257 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:37 free:50 realloc:4095 calloc:
+TA5 - rtems_clock_get - 09:00:03 12/31/1988
+mallocing 591 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:38 free:51 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:03 12/31/1988
-mallocing 277 bytes
+mallocing 68 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:39 free:52 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:03 12/31/1988
-mallocing 368 bytes
+mallocing 409 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:40 free:53 realloc:4095 calloc:
TA2 - rtems_clock_get - 09:00:03 12/31/1988
-mallocing 226 bytes
-TA1 - rtems_clock_get - 09:00:03 12/31/1988
-mallocing 983 bytes
-TA5 - rtems_clock_get - 09:00:03 12/31/1988
-mallocing 534 bytes
+mallocing 207 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:41 free:54 realloc:4095 calloc:
+TA4 - rtems_clock_get - 09:00:03 12/31/1988
+mallocing 554 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:42 free:55 realloc:4095 calloc:
TA3 - rtems_clock_get - 09:00:03 12/31/1988
-mallocing 171 bytes
+mallocing 378 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:43 free:56 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:03 12/31/1988
-mallocing 535 bytes
-TA2 - rtems_clock_get - 09:00:04 12/31/1988
-mallocing 494 bytes
-TA4 - rtems_clock_get - 09:00:04 12/31/1988
-mallocing 947 bytes
-TA1 - rtems_clock_get - 09:00:04 12/31/1988
-mallocing 765 bytes
+mallocing 879 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:44 free:57 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:04 12/31/1988
-mallocing 646 bytes
+mallocing 319 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:45 free:58 realloc:4095 calloc:
TA2 - rtems_clock_get - 09:00:04 12/31/1988
-mallocing 124 bytes
+mallocing 626 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:46 free:59 realloc:4095 calloc:
+TA1 - rtems_clock_get - 09:00:04 12/31/1988
+mallocing 980 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:47 free:60 realloc:4095 calloc:
+TA5 - rtems_clock_get - 09:00:04 12/31/1988
+mallocing 554 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:48 free:61 realloc:4095 calloc:
TA3 - rtems_clock_get - 09:00:04 12/31/1988
-mallocing 702 bytes
+mallocing 257 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:49 free:62 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:04 12/31/1988
-mallocing 767 bytes
+mallocing 85 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:50 free:63 realloc:4095 calloc:
+TA2 - rtems_clock_get - 09:00:04 12/31/1988
+mallocing 340 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:51 free:64 realloc:4095 calloc:
+TA4 - rtems_clock_get - 09:00:04 12/31/1988
+mallocing 378 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:52 free:65 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:04 12/31/1988
-mallocing 780 bytes
-TA2 - rtems_clock_get - 09:00:05 12/31/1988
-mallocing 83 bytes
-TA4 - rtems_clock_get - 09:00:05 12/31/1988
-mallocing 171 bytes
-TA5 - rtems_clock_get - 09:00:05 12/31/1988
-mallocing 947 bytes
+mallocing 907 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:53 free:66 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:05 12/31/1988
-mallocing 822 bytes
+mallocing 102 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:54 free:67 realloc:4095 calloc:
+TA2 - rtems_clock_get - 09:00:05 12/31/1988
+mallocing 843 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:55 free:68 realloc:4095 calloc:
TA3 - rtems_clock_get - 09:00:05 12/31/1988
-mallocing 226 bytes
+mallocing 207 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:56 free:69 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:05 12/31/1988
-mallocing 151 bytes
-TA2 - rtems_clock_get - 09:00:05 12/31/1988
-mallocing 389 bytes
+mallocing 921 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:57 free:70 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:05 12/31/1988
-mallocing 625 bytes
+mallocing 507 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:58 free:71 realloc:4095 calloc:
+TA2 - rtems_clock_get - 09:00:05 12/31/1988
+mallocing 68 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:59 free:72 realloc:4095 calloc:
+TA4 - rtems_clock_get - 09:00:05 12/31/1988
+mallocing 257 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:60 free:73 realloc:4095 calloc:
+TA5 - rtems_clock_get - 09:00:05 12/31/1988
+mallocing 378 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:61 free:74 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:05 12/31/1988
-mallocing 314 bytes
-TA2 - rtems_clock_get - 09:00:06 12/31/1988
-mallocing 277 bytes
-TA4 - rtems_clock_get - 09:00:06 12/31/1988
-mallocing 702 bytes
+mallocing 872 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:62 free:75 realloc:4095 calloc:
TA3 - rtems_clock_get - 09:00:06 12/31/1988
-mallocing 494 bytes
+mallocing 626 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:63 free:76 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:06 12/31/1988
-mallocing 346 bytes
-TA5 - rtems_clock_get - 09:00:06 12/31/1988
-mallocing 171 bytes
-TA1 - rtems_clock_get - 09:00:06 12/31/1988
-mallocing 917 bytes
+mallocing 333 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:64 free:77 realloc:4095 calloc:
TA2 - rtems_clock_get - 09:00:06 12/31/1988
-mallocing 368 bytes
+mallocing 409 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:65 free:78 realloc:4095 calloc:
+TA1 - rtems_clock_get - 09:00:06 12/31/1988
+mallocing 692 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:66 free:79 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:06 12/31/1988
-mallocing 519 bytes
+mallocing 556 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:67 free:80 realloc:4095 calloc:
+TA2 - rtems_clock_get - 09:00:06 12/31/1988
+mallocing 879 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:68 free:81 realloc:4095 calloc:
+TA4 - rtems_clock_get - 09:00:06 12/31/1988
+mallocing 207 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:69 free:82 realloc:4095 calloc:
TA3 - rtems_clock_get - 09:00:06 12/31/1988
-mallocing 124 bytes
+mallocing 340 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:70 free:83 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:06 12/31/1988
-mallocing 401 bytes
-TA2 - rtems_clock_get - 09:00:07 12/31/1988
-mallocing 983 bytes
-TA4 - rtems_clock_get - 09:00:07 12/31/1988
-mallocing 226 bytes
-TA1 - rtems_clock_get - 09:00:07 12/31/1988
-mallocing 606 bytes
+mallocing 361 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:71 free:84 realloc:4095 calloc:
+TA5 - rtems_clock_get - 09:00:06 12/31/1988
+mallocing 257 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:72 free:85 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:07 12/31/1988
-mallocing 785 bytes
+mallocing 31 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:73 free:86 realloc:4095 calloc:
TA2 - rtems_clock_get - 09:00:07 12/31/1988
-mallocing 535 bytes
-TA5 - rtems_clock_get - 09:00:07 12/31/1988
-mallocing 702 bytes
+mallocing 319 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:74 free:87 realloc:4095 calloc:
+TA1 - rtems_clock_get - 09:00:07 12/31/1988
+mallocing 858 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:75 free:88 realloc:4095 calloc:
TA3 - rtems_clock_get - 09:00:07 12/31/1988
-mallocing 83 bytes
+mallocing 843 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:76 free:89 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:07 12/31/1988
-mallocing 931 bytes
+mallocing 98 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:77 free:90 realloc:4095 calloc:
+TA2 - rtems_clock_get - 09:00:07 12/31/1988
+mallocing 980 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:78 free:91 realloc:4095 calloc:
+TA4 - rtems_clock_get - 09:00:07 12/31/1988
+mallocing 626 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:79 free:92 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:07 12/31/1988
-mallocing 869 bytes
-TA2 - rtems_clock_get - 09:00:08 12/31/1988
-mallocing 765 bytes
-TA4 - rtems_clock_get - 09:00:08 12/31/1988
-mallocing 494 bytes
+mallocing 877 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:80 free:93 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:08 12/31/1988
-mallocing 866 bytes
+mallocing 449 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:81 free:94 realloc:4095 calloc:
+TA2 - rtems_clock_get - 09:00:08 12/31/1988
+mallocing 85 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:82 free:95 realloc:4095 calloc:
+TA5 - rtems_clock_get - 09:00:08 12/31/1988
+mallocing 207 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:83 free:96 realloc:4095 calloc:
TA3 - rtems_clock_get - 09:00:08 12/31/1988
-mallocing 389 bytes
+mallocing 68 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:84 free:97 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:08 12/31/1988
-mallocing 674 bytes
-TA2 - rtems_clock_get - 09:00:08 12/31/1988
-mallocing 646 bytes
+mallocing 432 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:85 free:98 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:08 12/31/1988
-mallocing 758 bytes
-TA5 - rtems_clock_get - 09:00:08 12/31/1988
-mallocing 226 bytes
+mallocing 606 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:86 free:99 realloc:4095 calloc:
+TA2 - rtems_clock_get - 09:00:08 12/31/1988
+mallocing 907 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:87 free:100 realloc:4095 calloc:
+TA4 - rtems_clock_get - 09:00:08 12/31/1988
+mallocing 340 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:88 free:101 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:08 12/31/1988
-mallocing 581 bytes
-TA2 - rtems_clock_get - 09:00:09 12/31/1988
-mallocing 767 bytes
-TA4 - rtems_clock_get - 09:00:09 12/31/1988
-mallocing 124 bytes
+mallocing 927 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:89 free:102 realloc:4095 calloc:
TA3 - rtems_clock_get - 09:00:09 12/31/1988
-mallocing 277 bytes
-TA1 - rtems_clock_get - 09:00:09 12/31/1988
-mallocing 389 bytes
+mallocing 409 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:90 free:103 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:09 12/31/1988
-mallocing 355 bytes
+mallocing 664 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:91 free:104 realloc:4095 calloc:
TA2 - rtems_clock_get - 09:00:09 12/31/1988
-mallocing 780 bytes
+mallocing 102 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:92 free:105 realloc:4095 calloc:
+TA1 - rtems_clock_get - 09:00:09 12/31/1988
+mallocing 395 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:93 free:106 realloc:4095 calloc:
+TA5 - rtems_clock_get - 09:00:09 12/31/1988
+mallocing 626 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:94 free:107 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:09 12/31/1988
-mallocing 200 bytes
+mallocing 438 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:95 free:108 realloc:4095 calloc:
+TA2 - rtems_clock_get - 09:00:09 12/31/1988
+mallocing 921 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:96 free:109 realloc:4095 calloc:
+TA4 - rtems_clock_get - 09:00:09 12/31/1988
+mallocing 843 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:97 free:110 realloc:4095 calloc:
TA3 - rtems_clock_get - 09:00:09 12/31/1988
-mallocing 368 bytes
+mallocing 879 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:98 free:111 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:09 12/31/1988
-mallocing 826 bytes
-TA2 - rtems_clock_get - 09:00:10 12/31/1988
-mallocing 822 bytes
-TA4 - rtems_clock_get - 09:00:10 12/31/1988
-mallocing 83 bytes
-TA5 - rtems_clock_get - 09:00:10 12/31/1988
-mallocing 494 bytes
-TA1 - rtems_clock_get - 09:00:10 12/31/1988
-mallocing 415 bytes
+mallocing 652 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:99 free:112 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:10 12/31/1988
-mallocing 463 bytes
+mallocing 928 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:100 free:113 realloc:4095 calloc:
TA2 - rtems_clock_get - 09:00:10 12/31/1988
-mallocing 151 bytes
+mallocing 507 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:101 free:114 realloc:4095 calloc:
+TA1 - rtems_clock_get - 09:00:10 12/31/1988
+mallocing 949 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:102 free:115 realloc:4095 calloc:
TA3 - rtems_clock_get - 09:00:10 12/31/1988
-mallocing 983 bytes
+mallocing 319 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:103 free:116 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:10 12/31/1988
-mallocing 979 bytes
+mallocing 307 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:104 free:117 realloc:4095 calloc:
+TA2 - rtems_clock_get - 09:00:10 12/31/1988
+mallocing 872 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:105 free:118 realloc:4095 calloc:
+TA4 - rtems_clock_get - 09:00:10 12/31/1988
+mallocing 68 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:106 free:119 realloc:4095 calloc:
+TA5 - rtems_clock_get - 09:00:10 12/31/1988
+mallocing 340 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:107 free:120 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:10 12/31/1988
-mallocing 126 bytes
-TA2 - rtems_clock_get - 09:00:11 12/31/1988
-mallocing 625 bytes
-TA4 - rtems_clock_get - 09:00:11 12/31/1988
-mallocing 389 bytes
+mallocing 596 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:108 free:121 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:11 12/31/1988
-mallocing 212 bytes
-TA5 - rtems_clock_get - 09:00:11 12/31/1988
-mallocing 124 bytes
-TA3 - rtems_clock_get - 09:00:11 12/31/1988
-mallocing 535 bytes
-TA1 - rtems_clock_get - 09:00:11 12/31/1988
-mallocing 958 bytes
+mallocing 783 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:109 free:122 realloc:4095 calloc:
TA2 - rtems_clock_get - 09:00:11 12/31/1988
-mallocing 314 bytes
+mallocing 333 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:110 free:123 realloc:4095 calloc:
+TA3 - rtems_clock_get - 09:00:11 12/31/1988
+mallocing 980 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:111 free:124 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:11 12/31/1988
-mallocing 737 bytes
+mallocing 338 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:112 free:125 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:11 12/31/1988
+mallocing 805 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:113 free:126 realloc:4095 calloc:
+TA2 - rtems_clock_get - 09:00:11 12/31/1988
+mallocing 692 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:114 free:127 realloc:4095 calloc:
+TA4 - rtems_clock_get - 09:00:11 12/31/1988
mallocing 409 bytes
-TA2 - rtems_clock_get - 09:00:12 12/31/1988
-mallocing 346 bytes
-TA4 - rtems_clock_get - 09:00:12 12/31/1988
-mallocing 277 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:115 free:128 realloc:4095 calloc:
+TA1 - rtems_clock_get - 09:00:11 12/31/1988
+mallocing 942 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:116 free:129 realloc:4095 calloc:
+TA5 - rtems_clock_get - 09:00:11 12/31/1988
+mallocing 843 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:117 free:130 realloc:4095 calloc:
TA3 - rtems_clock_get - 09:00:12 12/31/1988
-mallocing 765 bytes
-TA1 - rtems_clock_get - 09:00:12 12/31/1988
-mallocing 780 bytes
+mallocing 85 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:118 free:131 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:12 12/31/1988
-mallocing 757 bytes
+mallocing 66 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:119 free:132 realloc:4095 calloc:
TA2 - rtems_clock_get - 09:00:12 12/31/1988
-mallocing 917 bytes
-TA5 - rtems_clock_get - 09:00:12 12/31/1988
-mallocing 83 bytes
+mallocing 556 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:120 free:133 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:12 12/31/1988
-mallocing 956 bytes
+mallocing 857 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:121 free:134 realloc:4095 calloc:
+TA1 - rtems_clock_get - 09:00:12 12/31/1988
+mallocing 977 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:122 free:135 realloc:4095 calloc:
+TA2 - rtems_clock_get - 09:00:12 12/31/1988
+mallocing 361 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:123 free:136 realloc:4095 calloc:
+TA4 - rtems_clock_get - 09:00:12 12/31/1988
+mallocing 879 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:124 free:137 realloc:4095 calloc:
TA3 - rtems_clock_get - 09:00:12 12/31/1988
-mallocing 646 bytes
+mallocing 907 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:125 free:138 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:12 12/31/1988
-mallocing 28 bytes
-TA2 - rtems_clock_get - 09:00:13 12/31/1988
-mallocing 519 bytes
-TA4 - rtems_clock_get - 09:00:13 12/31/1988
-mallocing 368 bytes
+mallocing 889 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:126 free:139 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:13 12/31/1988
-mallocing 318 bytes
-TA1 - rtems_clock_get - 09:00:13 12/31/1988
-mallocing 756 bytes
+mallocing 545 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:127 free:140 realloc:4095 calloc:
TA2 - rtems_clock_get - 09:00:13 12/31/1988
-mallocing 401 bytes
+mallocing 31 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:128 free:141 realloc:4095 calloc:
+TA5 - rtems_clock_get - 09:00:13 12/31/1988
+mallocing 68 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:129 free:142 realloc:4095 calloc:
+TA1 - rtems_clock_get - 09:00:13 12/31/1988
+mallocing 864 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:130 free:143 realloc:4095 calloc:
TA3 - rtems_clock_get - 09:00:13 12/31/1988
-mallocing 767 bytes
+mallocing 102 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:131 free:144 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:13 12/31/1988
-mallocing 242 bytes
-TA5 - rtems_clock_get - 09:00:13 12/31/1988
-mallocing 389 bytes
+mallocing 457 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:132 free:145 realloc:4095 calloc:
+TA2 - rtems_clock_get - 09:00:13 12/31/1988
+mallocing 858 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:133 free:146 realloc:4095 calloc:
+TA4 - rtems_clock_get - 09:00:13 12/31/1988
+mallocing 319 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:134 free:147 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:13 12/31/1988
-mallocing 589 bytes
-TA2 - rtems_clock_get - 09:00:14 12/31/1988
-mallocing 606 bytes
-TA4 - rtems_clock_get - 09:00:14 12/31/1988
-mallocing 983 bytes
+mallocing 800 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:135 free:148 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:14 12/31/1988
-mallocing 43 bytes
+mallocing 873 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:136 free:149 realloc:4095 calloc:
+TA2 - rtems_clock_get - 09:00:14 12/31/1988
+mallocing 98 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:137 free:150 realloc:4095 calloc:
TA3 - rtems_clock_get - 09:00:14 12/31/1988
-mallocing 780 bytes
+mallocing 921 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:138 free:151 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:14 12/31/1988
-mallocing 956 bytes
-TA2 - rtems_clock_get - 09:00:14 12/31/1988
-mallocing 785 bytes
+mallocing 821 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:139 free:152 realloc:4095 calloc:
+TA5 - rtems_clock_get - 09:00:14 12/31/1988
+mallocing 409 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:140 free:153 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:14 12/31/1988
-mallocing 319 bytes
+mallocing 185 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:141 free:154 realloc:4095 calloc:
+TA2 - rtems_clock_get - 09:00:14 12/31/1988
+mallocing 877 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:142 free:155 realloc:4095 calloc:
+TA4 - rtems_clock_get - 09:00:14 12/31/1988
+mallocing 980 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:143 free:156 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:14 12/31/1988
-mallocing 59 bytes
-TA2 - rtems_clock_get - 09:00:15 12/31/1988
-mallocing 931 bytes
-TA4 - rtems_clock_get - 09:00:15 12/31/1988
-mallocing 535 bytes
-TA5 - rtems_clock_get - 09:00:15 12/31/1988
-mallocing 277 bytes
+mallocing 86 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:144 free:157 realloc:4095 calloc:
TA3 - rtems_clock_get - 09:00:15 12/31/1988
-mallocing 822 bytes
-TA1 - rtems_clock_get - 09:00:15 12/31/1988
-mallocing 441 bytes
+mallocing 507 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:145 free:158 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:15 12/31/1988
-mallocing 915 bytes
+mallocing 638 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:146 free:159 realloc:4095 calloc:
TA2 - rtems_clock_get - 09:00:15 12/31/1988
-mallocing 869 bytes
+mallocing 449 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:147 free:160 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:15 12/31/1988
-mallocing 572 bytes
+mallocing 233 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:148 free:161 realloc:4095 calloc:
+TA1 - rtems_clock_get - 09:00:15 12/31/1988
+mallocing 462 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:149 free:162 realloc:4095 calloc:
+TA2 - rtems_clock_get - 09:00:15 12/31/1988
+mallocing 432 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:150 free:163 realloc:4095 calloc:
+TA4 - rtems_clock_get - 09:00:15 12/31/1988
+mallocing 85 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:151 free:164 realloc:4095 calloc:
+TA5 - rtems_clock_get - 09:00:15 12/31/1988
+mallocing 879 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:152 free:165 realloc:4095 calloc:
TA3 - rtems_clock_get - 09:00:15 12/31/1988
-mallocing 151 bytes
+mallocing 872 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:153 free:166 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:15 12/31/1988
-mallocing 118 bytes
-TA2 - rtems_clock_get - 09:00:16 12/31/1988
-mallocing 866 bytes
-TA4 - rtems_clock_get - 09:00:16 12/31/1988
-mallocing 765 bytes
-TA1 - rtems_clock_get - 09:00:16 12/31/1988
-mallocing 569 bytes
-TA5 - rtems_clock_get - 09:00:16 12/31/1988
-mallocing 368 bytes
+mallocing 7 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:154 free:167 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:16 12/31/1988
-mallocing 252 bytes
+mallocing 635 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:155 free:168 realloc:4095 calloc:
TA2 - rtems_clock_get - 09:00:16 12/31/1988
-mallocing 674 bytes
+mallocing 606 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:156 free:169 realloc:4095 calloc:
+TA1 - rtems_clock_get - 09:00:16 12/31/1988
+mallocing 421 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:157 free:170 realloc:4095 calloc:
TA3 - rtems_clock_get - 09:00:16 12/31/1988
-mallocing 625 bytes
+mallocing 333 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:158 free:171 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:16 12/31/1988
-mallocing 495 bytes
+mallocing 953 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:159 free:172 realloc:4095 calloc:
+TA2 - rtems_clock_get - 09:00:16 12/31/1988
+mallocing 927 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:160 free:173 realloc:4095 calloc:
+TA4 - rtems_clock_get - 09:00:16 12/31/1988
+mallocing 907 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:161 free:174 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:16 12/31/1988
-mallocing 236 bytes
-TA2 - rtems_clock_get - 09:00:17 12/31/1988
-mallocing 758 bytes
-TA4 - rtems_clock_get - 09:00:17 12/31/1988
-mallocing 646 bytes
+mallocing 210 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:162 free:175 realloc:4095 calloc:
+TA5 - rtems_clock_get - 09:00:16 12/31/1988
+mallocing 319 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:163 free:176 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:17 12/31/1988
-mallocing 476 bytes
+mallocing 970 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:164 free:177 realloc:4095 calloc:
+TA2 - rtems_clock_get - 09:00:17 12/31/1988
+mallocing 664 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:165 free:178 realloc:4095 calloc:
TA3 - rtems_clock_get - 09:00:17 12/31/1988
-mallocing 314 bytes
+mallocing 692 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:166 free:179 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:17 12/31/1988
-mallocing 406 bytes
-TA2 - rtems_clock_get - 09:00:17 12/31/1988
-mallocing 581 bytes
-TA5 - rtems_clock_get - 09:00:17 12/31/1988
-mallocing 983 bytes
+mallocing 261 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:167 free:180 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:17 12/31/1988
-mallocing 872 bytes
+mallocing 857 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:168 free:181 realloc:4095 calloc:
+TA2 - rtems_clock_get - 09:00:17 12/31/1988
+mallocing 395 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:169 free:182 realloc:4095 calloc:
+TA4 - rtems_clock_get - 09:00:17 12/31/1988
+mallocing 102 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:170 free:183 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:17 12/31/1988
-mallocing 426 bytes
-TA2 - rtems_clock_get - 09:00:18 12/31/1988
-mallocing 389 bytes
-TA4 - rtems_clock_get - 09:00:18 12/31/1988
-mallocing 767 bytes
+mallocing 581 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:171 free:184 realloc:4095 calloc:
TA3 - rtems_clock_get - 09:00:18 12/31/1988
-mallocing 346 bytes
-TA1 - rtems_clock_get - 09:00:18 12/31/1988
-mallocing 358 bytes
+mallocing 556 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:172 free:185 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:18 12/31/1988
-mallocing 381 bytes
+mallocing 707 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:173 free:186 realloc:4095 calloc:
TA2 - rtems_clock_get - 09:00:18 12/31/1988
-mallocing 355 bytes
-TA1 - rtems_clock_get - 09:00:18 12/31/1988
-mallocing 43 bytes
+mallocing 438 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:174 free:187 realloc:4095 calloc:
TA5 - rtems_clock_get - 09:00:18 12/31/1988
-mallocing 535 bytes
+mallocing 980 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:175 free:188 realloc:4095 calloc:
+TA1 - rtems_clock_get - 09:00:18 12/31/1988
+mallocing 285 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:176 free:189 realloc:4095 calloc:
+TA1 - rtems_clock_get - 09:00:18 12/31/1988
+mallocing 318 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:177 free:190 realloc:4095 calloc:
+TA2 - rtems_clock_get - 09:00:18 12/31/1988
+mallocing 652 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:178 free:191 realloc:4095 calloc:
+TA4 - rtems_clock_get - 09:00:18 12/31/1988
+mallocing 921 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:179 free:192 realloc:4095 calloc:
TA3 - rtems_clock_get - 09:00:18 12/31/1988
-mallocing 917 bytes
+mallocing 361 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:180 free:193 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:18 12/31/1988
-mallocing 160 bytes
-TA2 - rtems_clock_get - 09:00:19 12/31/1988
-mallocing 200 bytes
-TA4 - rtems_clock_get - 09:00:19 12/31/1988
-mallocing 780 bytes
+mallocing 643 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:181 free:194 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:19 12/31/1988
-mallocing 522 bytes
-TA1 - rtems_clock_get - 09:00:19 12/31/1988
-mallocing 696 bytes
+mallocing 858 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:182 free:195 realloc:4095 calloc:
TA2 - rtems_clock_get - 09:00:19 12/31/1988
-mallocing 826 bytes
+mallocing 928 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:183 free:196 realloc:4095 calloc:
+TA1 - rtems_clock_get - 09:00:19 12/31/1988
+mallocing 668 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:184 free:197 realloc:4095 calloc:
+TA5 - rtems_clock_get - 09:00:19 12/31/1988
+mallocing 85 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:185 free:198 realloc:4095 calloc:
TA3 - rtems_clock_get - 09:00:19 12/31/1988
-mallocing 519 bytes
+mallocing 31 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:186 free:199 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:19 12/31/1988
-mallocing 97 bytes
+mallocing 443 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:187 free:200 realloc:4095 calloc:
+TA2 - rtems_clock_get - 09:00:19 12/31/1988
+mallocing 949 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:188 free:201 realloc:4095 calloc:
+TA4 - rtems_clock_get - 09:00:19 12/31/1988
+mallocing 507 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:189 free:202 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:19 12/31/1988
-mallocing 400 bytes
-TA2 - rtems_clock_get - 09:00:20 12/31/1988
-mallocing 415 bytes
-TA4 - rtems_clock_get - 09:00:20 12/31/1988
-mallocing 822 bytes
-TA5 - rtems_clock_get - 09:00:20 12/31/1988
-mallocing 765 bytes
+mallocing 55 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:190 free:203 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:20 12/31/1988
-mallocing 773 bytes
+mallocing 777 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:191 free:204 realloc:4095 calloc:
+TA2 - rtems_clock_get - 09:00:20 12/31/1988
+mallocing 307 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:192 free:205 realloc:4095 calloc:
TA3 - rtems_clock_get - 09:00:20 12/31/1988
-mallocing 401 bytes
+mallocing 858 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:193 free:206 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:20 12/31/1988
-mallocing 244 bytes
-TA2 - rtems_clock_get - 09:00:20 12/31/1988
-mallocing 463 bytes
+mallocing 594 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:194 free:207 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:20 12/31/1988
-mallocing 342 bytes
+mallocing 102 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:195 free:208 realloc:4095 calloc:
+TA2 - rtems_clock_get - 09:00:20 12/31/1988
+mallocing 596 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:196 free:209 realloc:4095 calloc:
+TA4 - rtems_clock_get - 09:00:20 12/31/1988
+mallocing 872 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:197 free:210 realloc:4095 calloc:
+TA5 - rtems_clock_get - 09:00:20 12/31/1988
+mallocing 907 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:198 free:211 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:20 12/31/1988
-mallocing 229 bytes
-TA2 - rtems_clock_get - 09:00:21 12/31/1988
-mallocing 979 bytes
-TA4 - rtems_clock_get - 09:00:21 12/31/1988
-mallocing 151 bytes
+mallocing 299 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:199 free:212 realloc:4095 calloc:
TA3 - rtems_clock_get - 09:00:21 12/31/1988
-mallocing 606 bytes
+mallocing 98 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:200 free:213 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:21 12/31/1988
-mallocing 297 bytes
-TA5 - rtems_clock_get - 09:00:21 12/31/1988
-mallocing 646 bytes
-TA1 - rtems_clock_get - 09:00:21 12/31/1988
-mallocing 304 bytes
+mallocing 950 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:201 free:214 realloc:4095 calloc:
TA2 - rtems_clock_get - 09:00:21 12/31/1988
-mallocing 126 bytes
+mallocing 783 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:202 free:215 realloc:4095 calloc:
+TA1 - rtems_clock_get - 09:00:21 12/31/1988
+mallocing 665 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:203 free:216 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:21 12/31/1988
-mallocing 887 bytes
+mallocing 947 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:204 free:217 realloc:4095 calloc:
+TA2 - rtems_clock_get - 09:00:21 12/31/1988
+mallocing 338 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:205 free:218 realloc:4095 calloc:
+TA4 - rtems_clock_get - 09:00:21 12/31/1988
+mallocing 333 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:206 free:219 realloc:4095 calloc:
TA3 - rtems_clock_get - 09:00:21 12/31/1988
-mallocing 785 bytes
+mallocing 877 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:207 free:220 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:21 12/31/1988
-mallocing 36 bytes
-TA2 - rtems_clock_get - 09:00:22 12/31/1988
-mallocing 212 bytes
-TA4 - rtems_clock_get - 09:00:22 12/31/1988
-mallocing 625 bytes
-TA1 - rtems_clock_get - 09:00:22 12/31/1988
-mallocing 651 bytes
+mallocing 879 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:208 free:221 realloc:4095 calloc:
+TA5 - rtems_clock_get - 09:00:21 12/31/1988
+mallocing 102 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:209 free:222 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:22 12/31/1988
-mallocing 398 bytes
+mallocing 700 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:210 free:223 realloc:4095 calloc:
TA2 - rtems_clock_get - 09:00:22 12/31/1988
-mallocing 958 bytes
-TA5 - rtems_clock_get - 09:00:22 12/31/1988
-mallocing 767 bytes
+mallocing 805 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:211 free:224 realloc:4095 calloc:
+TA1 - rtems_clock_get - 09:00:22 12/31/1988
+mallocing 375 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:212 free:225 realloc:4095 calloc:
TA3 - rtems_clock_get - 09:00:22 12/31/1988
-mallocing 931 bytes
+mallocing 449 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:213 free:226 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:22 12/31/1988
-mallocing 676 bytes
+mallocing 613 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:214 free:227 realloc:4095 calloc:
+TA2 - rtems_clock_get - 09:00:22 12/31/1988
+mallocing 942 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:215 free:228 realloc:4095 calloc:
+TA4 - rtems_clock_get - 09:00:22 12/31/1988
+mallocing 692 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:216 free:229 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:22 12/31/1988
-mallocing 732 bytes
-TA2 - rtems_clock_get - 09:00:23 12/31/1988
-mallocing 737 bytes
-TA4 - rtems_clock_get - 09:00:23 12/31/1988
-mallocing 314 bytes
+mallocing 863 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:217 free:230 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:23 12/31/1988
-mallocing 937 bytes
+mallocing 136 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:218 free:231 realloc:4095 calloc:
+TA2 - rtems_clock_get - 09:00:23 12/31/1988
+mallocing 66 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:219 free:232 realloc:4095 calloc:
+TA5 - rtems_clock_get - 09:00:23 12/31/1988
+mallocing 921 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:220 free:233 realloc:4095 calloc:
TA3 - rtems_clock_get - 09:00:23 12/31/1988
-mallocing 869 bytes
+mallocing 432 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:221 free:234 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:23 12/31/1988
-mallocing 233 bytes
-TA2 - rtems_clock_get - 09:00:23 12/31/1988
-mallocing 409 bytes
+mallocing 439 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:222 free:235 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:23 12/31/1988
-mallocing 838 bytes
-TA5 - rtems_clock_get - 09:00:23 12/31/1988
-mallocing 780 bytes
+mallocing 274 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:223 free:236 realloc:4095 calloc:
+TA2 - rtems_clock_get - 09:00:23 12/31/1988
+mallocing 857 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:224 free:237 realloc:4095 calloc:
+TA4 - rtems_clock_get - 09:00:23 12/31/1988
+mallocing 556 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:225 free:238 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:23 12/31/1988
-mallocing 967 bytes
-TA2 - rtems_clock_get - 09:00:24 12/31/1988
-mallocing 780 bytes
-TA4 - rtems_clock_get - 09:00:24 12/31/1988
-mallocing 346 bytes
+mallocing 186 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:226 free:239 realloc:4095 calloc:
TA3 - rtems_clock_get - 09:00:24 12/31/1988
-mallocing 866 bytes
-TA1 - rtems_clock_get - 09:00:24 12/31/1988
-mallocing 778 bytes
+mallocing 606 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:227 free:240 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:24 12/31/1988
-mallocing 431 bytes
+mallocing 506 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:228 free:241 realloc:4095 calloc:
TA2 - rtems_clock_get - 09:00:24 12/31/1988
-mallocing 757 bytes
+mallocing 977 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:229 free:242 realloc:4095 calloc:
+TA1 - rtems_clock_get - 09:00:24 12/31/1988
+mallocing 570 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:230 free:243 realloc:4095 calloc:
+TA5 - rtems_clock_get - 09:00:24 12/31/1988
+mallocing 507 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:231 free:244 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:24 12/31/1988
-mallocing 674 bytes
+mallocing 672 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:232 free:245 realloc:4095 calloc:
+TA2 - rtems_clock_get - 09:00:24 12/31/1988
+mallocing 889 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:233 free:246 realloc:4095 calloc:
+TA4 - rtems_clock_get - 09:00:24 12/31/1988
+mallocing 361 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:234 free:247 realloc:4095 calloc:
TA3 - rtems_clock_get - 09:00:24 12/31/1988
-mallocing 674 bytes
+mallocing 927 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:235 free:248 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:24 12/31/1988
-mallocing 809 bytes
+mallocing 623 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:236 free:249 realloc:4095 calloc:
+TA1 - rtems_clock_get - 09:00:25 12/31/1988
+mallocing 61 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:237 free:250 realloc:4095 calloc:
+TA2 - rtems_clock_get - 09:00:25 12/31/1988
+mallocing 545 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:238 free:251 realloc:4095 calloc:
+TA1 - rtems_clock_get - 09:00:25 12/31/1988
+mallocing 550 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:239 free:252 realloc:4095 calloc:
+TA3 - rtems_clock_get - 09:00:25 12/31/1988
+mallocing 664 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:240 free:253 realloc:4095 calloc:
+TA1 - rtems_clock_get - 09:00:25 12/31/1988
+mallocing 563 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:241 free:254 realloc:4095 calloc:
TA2 - rtems_clock_get - 09:00:25 12/31/1988
-mallocing 956 bytes
+mallocing 864 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:242 free:255 realloc:4095 calloc:
TA4 - rtems_clock_get - 09:00:25 12/31/1988
-mallocing 917 bytes
+mallocing 31 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:243 free:256 realloc:4095 calloc:
TA5 - rtems_clock_get - 09:00:25 12/31/1988
-mallocing 822 bytes
+mallocing 872 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:244 free:257 realloc:4095 calloc:
TA1 - rtems_clock_get - 09:00:25 12/31/1988
-mallocing 158 bytes
+mallocing 536 bytes
+Malloc statistic
+ avail:3769k allocated:0k (0%) max:0k (0%) lifetime:0k freed:0
+ Call counts: malloc:245 free:258 realloc:4095 calloc:
*** END OF MALLOC TEST ***