summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/include/rtems/malloc.h
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2010-06-30 15:36:48 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2010-06-30 15:36:48 +0000
commit7c658feb2e840582f2564d72c477e7ea0c7d3f76 (patch)
tree5f8c825064e8d5c12c9a9ac7ab6937e38e0850e6 /cpukit/libcsupport/include/rtems/malloc.h
parent2010-06-30 Joel Sherrill <joel.sherrilL@OARcorp.com> (diff)
downloadrtems-7c658feb2e840582f2564d72c477e7ea0c7d3f76.tar.bz2
2010-06-30 Joel Sherrill <joel.sherrilL@OARcorp.com>
PR 1472/cpukit * libcsupport/Makefile.am, libcsupport/include/rtems/malloc.h, libcsupport/src/free.c, libcsupport/src/malloc.c, libcsupport/src/malloc_initialize.c, libcsupport/src/realloc.c, libcsupport/src/rtems_memalign.c: Remove malloc boundary code. It has not been used since before 4.6 and is bitrotted. * libcsupport/src/malloc_boundary.c: Removed.
Diffstat (limited to 'cpukit/libcsupport/include/rtems/malloc.h')
-rw-r--r--cpukit/libcsupport/include/rtems/malloc.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/cpukit/libcsupport/include/rtems/malloc.h b/cpukit/libcsupport/include/rtems/malloc.h
index c9ce0f0fbf..adc32c2a58 100644
--- a/cpukit/libcsupport/include/rtems/malloc.h
+++ b/cpukit/libcsupport/include/rtems/malloc.h
@@ -56,20 +56,6 @@ extern rtems_malloc_statistics_functions_t
extern rtems_malloc_statistics_functions_t *rtems_malloc_statistics_helpers;
/*
- * Malloc boundary support plugin
- */
-typedef struct {
- void (*initialize)(void);
- uint32_t (*overhead)(void);
- void (*at_malloc)(void *, size_t);
- void (*at_free)(void *);
- void (*at_realloc)(void *, size_t);
-} rtems_malloc_boundary_functions_t;
-
-extern rtems_malloc_boundary_functions_t rtems_malloc_boundary_helpers_table;
-extern rtems_malloc_boundary_functions_t *rtems_malloc_boundary_helpers;
-
-/*
* Malloc Heap Extension (sbrk) plugin
*/
typedef struct {