summaryrefslogtreecommitdiff
path: root/nuttx/arch/arm/src/common
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-09-02 11:22:09 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-09-02 11:22:09 -0600
commit70364682c1d59b7ac26548085cc8faa835086c02 (patch)
tree9d6b1584b65ed5dbc7896ad55d677c3540fdc115 /nuttx/arch/arm/src/common
parent0c224f7e3dd878868fe921a5b41efe2362ce7fb6 (diff)
downloadnuttx-70364682c1d59b7ac26548085cc8faa835086c02.tar.gz
nuttx-70364682c1d59b7ac26548085cc8faa835086c02.tar.bz2
nuttx-70364682c1d59b7ac26548085cc8faa835086c02.zip
Restructuring of build to allow use of use-space allocators by kernel logic in the kernel build.
Diffstat (limited to 'nuttx/arch/arm/src/common')
-rw-r--r--nuttx/arch/arm/src/common/up_allocateheap.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/nuttx/arch/arm/src/common/up_allocateheap.c b/nuttx/arch/arm/src/common/up_allocateheap.c
index e3443639a..1c1dcb463 100644
--- a/nuttx/arch/arm/src/common/up_allocateheap.c
+++ b/nuttx/arch/arm/src/common/up_allocateheap.c
@@ -67,8 +67,9 @@
*
* The ARMv7 has no MPU but does have an MMU. With this MMU, it can support
* the kernel build (CONFIG_BUILD_KERNEL=y). In this configuration, there
- * is again only one heap but, retaining the terminology, this is the kernel
- * heap.
+ * is one kernel heap but multiple user heaps: One per task group. However,
+ * in this case, we need only be concerned about initializing the single
+ * kernel heap here.
*/
/****************************************************************************