summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-08-12 20:53:33 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-08-12 20:53:33 +0000
commit717391f502346161f64a26d3b6c4ea0aef0fb39f (patch)
treee0cc472327cf628f75061b970cc96662de3e9b0b /cpukit/libcsupport
parent2009-08-12 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-717391f502346161f64a26d3b6c4ea0aef0fb39f.tar.bz2
2009-08-12 Joel Sherrill <joel.sherrill@OARcorp.com>
* libcsupport/src/malloc_boundary.c: This is currently non-funcitonal. Do not build it when doing coverage until it works again. * sapi/include/confdefs.h: Address linking errors when building for configuration.
Diffstat (limited to 'cpukit/libcsupport')
-rw-r--r--cpukit/libcsupport/src/malloc_boundary.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/cpukit/libcsupport/src/malloc_boundary.c b/cpukit/libcsupport/src/malloc_boundary.c
index 4f5bbc47c6..4dd9bb6916 100644
--- a/cpukit/libcsupport/src/malloc_boundary.c
+++ b/cpukit/libcsupport/src/malloc_boundary.c
@@ -38,7 +38,10 @@
#include <stdio.h>
+/* only supported on newlib targets */
#ifdef RTEMS_NEWLIB
+/* not completely implemented so not included in coverage analysis */
+#ifndef RTEMS_COVERAGE
#define SENTINELSIZE 12
#define SENTINEL "\xD1\xAC\xB2\xF1" "BITE ME"
@@ -191,4 +194,4 @@ void checkMallocArena(void)
}
#endif
-
+#endif