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
@@ -101,7 +101,7 @@ int env_dup(FAR struct task_group_s *group)
/* Yes..The parent task has an environment, duplicate it */
envlen = ptcb->group->tg_envsize;
envp = (FAR char *)kumalloc(envlen);
envp = (FAR char *)kumm_malloc(envlen);
if (!envp)
{
ret = -ENOMEM;
+1 -1
View File
@@ -173,7 +173,7 @@ int setenv(FAR const char *name, FAR const char *value, int overwrite)
else
{
newsize = varlen;
newenvp = (FAR char *)kumalloc(varlen);
newenvp = (FAR char *)kumm_malloc(varlen);
if (!newenvp)
{
ret = ENOMEM;