summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/malloc_get_statistics.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/libcsupport/src/malloc_get_statistics.c')
-rw-r--r--cpukit/libcsupport/src/malloc_get_statistics.c36
1 files changed, 0 insertions, 36 deletions
diff --git a/cpukit/libcsupport/src/malloc_get_statistics.c b/cpukit/libcsupport/src/malloc_get_statistics.c
deleted file mode 100644
index a54a4c132a..0000000000
--- a/cpukit/libcsupport/src/malloc_get_statistics.c
+++ /dev/null
@@ -1,36 +0,0 @@
-/**
- * @file
- *
- * @brief Print Malloc Statistic Usage Report
- * @ingroup MallocSupport
- */
-
-/*
- * COPYRIGHT (c) 1989-2007.
- * 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.
- */
-
-#if HAVE_CONFIG_H
-#include "config.h"
-#endif
-
-#ifdef RTEMS_NEWLIB
-#include "malloc_p.h"
-
-int malloc_get_statistics(
- rtems_malloc_statistics_t *stats
-)
-{
- if ( !stats )
- return -1;
- _RTEMS_Lock_allocator();
- *stats = rtems_malloc_statistics;
- _RTEMS_Unlock_allocator();
- return 0;
-}
-
-#endif