summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2003-09-02 21:02:51 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2003-09-02 21:02:51 +0000
commit863829e3ba547b5ab5e34c8477e7a2586660a908 (patch)
treef900f0033df1afb646fd6dde19fd3bb9404a479b /cpukit/libcsupport
parentAdded PR tracking line. (diff)
downloadrtems-863829e3ba547b5ab5e34c8477e7a2586660a908.tar.bz2
2003-09-02 Ilya Alexeev <ilya@continuum.ru>
PR 472/filesystem src/malloc.c: Need to include apimutex.h when MALLOC_STATS is defined.
Diffstat (limited to 'cpukit/libcsupport')
-rw-r--r--cpukit/libcsupport/ChangeLog5
-rw-r--r--cpukit/libcsupport/src/malloc.c1
2 files changed, 6 insertions, 0 deletions
diff --git a/cpukit/libcsupport/ChangeLog b/cpukit/libcsupport/ChangeLog
index d074be36be..db04964fa4 100644
--- a/cpukit/libcsupport/ChangeLog
+++ b/cpukit/libcsupport/ChangeLog
@@ -1,3 +1,8 @@
+2003-09-02 Ilya Alexeev <ilya@continuum.ru>
+
+ PR 472/filesystem
+ src/malloc.c: Need to include apimutex.h when MALLOC_STATS is defined.
+
2003-08-18 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
PR 449/rtems:
diff --git a/cpukit/libcsupport/src/malloc.c b/cpukit/libcsupport/src/malloc.c
index 4f5f103154..e89408284d 100644
--- a/cpukit/libcsupport/src/malloc.c
+++ b/cpukit/libcsupport/src/malloc.c
@@ -19,6 +19,7 @@
#define __RTEMS_VIOLATE_KERNEL_VISIBILITY__
#include <rtems.h>
#include <rtems/libcsupport.h>
+#include <rtems/score/apimutex.h>
#ifdef RTEMS_NEWLIB
#include <sys/reent.h>
#endif