summaryrefslogtreecommitdiff
path: root/nuttx/arch/rgmp
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-08-31 16:24:24 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-08-31 16:24:24 -0600
commit229ba49e4c56097c393d2e5fa9e77de80ce55a75 (patch)
tree4842535e4d2e0c4ef983d6be8e33a68c3d74c554 /nuttx/arch/rgmp
parent08835af3d68a4ea82ec32a5fe29608a6233eb9d9 (diff)
downloadnuttx-229ba49e4c56097c393d2e5fa9e77de80ce55a75.tar.gz
nuttx-229ba49e4c56097c393d2e5fa9e77de80ce55a75.tar.bz2
nuttx-229ba49e4c56097c393d2e5fa9e77de80ce55a75.zip
Rename kumalloc to kumm_malloc and kuzalloc to kumm_zalloc for consistency with other naming
Diffstat (limited to 'nuttx/arch/rgmp')
-rw-r--r--nuttx/arch/rgmp/src/nuttx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nuttx/arch/rgmp/src/nuttx.c b/nuttx/arch/rgmp/src/nuttx.c
index 579acab15..b2c1bd3e2 100644
--- a/nuttx/arch/rgmp/src/nuttx.c
+++ b/nuttx/arch/rgmp/src/nuttx.c
@@ -134,7 +134,7 @@ int up_create_stack(struct tcb_s *tcb, size_t stack_size, uint8_t ttype)
} else
#endif
{
- stack_alloc_ptr = (uint32_t*)kumalloc(adj_stack_size);
+ stack_alloc_ptr = (uint32_t*)kumm_malloc(adj_stack_size);
}
if (stack_alloc_ptr) {
/* This is the address of the last word in the allocation */