Rename kumalloc to kumm_malloc and kuzalloc to kumm_zalloc for consistency with other naming

This commit is contained in:
Gregory Nutt
2014-08-31 16:24:24 -06:00
parent 7aefc6d3a1
commit 9aca0c1c84
35 changed files with 54 additions and 54 deletions
+1 -1
View File
@@ -166,7 +166,7 @@ int exec_module(FAR const struct binary_s *binp)
#ifndef CONFIG_CUSTOM_STACK
/* Allocate the stack for the new task (always from the user heap) */
stack = (FAR uint32_t*)kumalloc(binp->stacksize);
stack = (FAR uint32_t*)kumm_malloc(binp->stacksize);
if (!tcb)
{
err = ENOMEM;