summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/rtems_memalign.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2010-07-01 15:39:59 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2010-07-01 15:39:59 +0000
commitf56f8e298ad748ea51b53184936bf953ba55db13 (patch)
tree9fbc08b665988dec22ebbbb1cc36efde6bf6fddd /cpukit/libcsupport/src/rtems_memalign.c
parent2010-07-01 Joel Sherrill <joel.sherrilL@OARcorp.com> (diff)
downloadrtems-f56f8e298ad748ea51b53184936bf953ba55db13.tar.bz2
2010-07-01 Joel Sherrill <joel.sherrill@oarcorp.com>
* libcsupport/src/rtems_memalign.c, score/include/rtems/score/heap.h: Remove stray references to malloc boundary.
Diffstat (limited to 'cpukit/libcsupport/src/rtems_memalign.c')
-rw-r--r--cpukit/libcsupport/src/rtems_memalign.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/cpukit/libcsupport/src/rtems_memalign.c b/cpukit/libcsupport/src/rtems_memalign.c
index 9f409fe180..2d64cbbfd6 100644
--- a/cpukit/libcsupport/src/rtems_memalign.c
+++ b/cpukit/libcsupport/src/rtems_memalign.c
@@ -66,14 +66,6 @@ int rtems_memalign(
if ( rtems_malloc_statistics_helpers )
(*rtems_malloc_statistics_helpers->at_malloc)(pointer);
- #if defined(RTEMS_MALLOC_BOUNDARY_HELPERS)
- /*
- * If configured, set the boundary area
- */
- if (rtems_malloc_boundary_helpers)
- (*rtems_malloc_boundary_helpers->at_malloc)(return_this, size);
- #endif
-
*pointer = return_this;
return 0;
}