Rename kmemalign to kmm_memalign and krealloc to kmm_realooc for consistency with other naming

This commit is contained in:
Gregory Nutt
2014-08-31 15:27:37 -06:00
parent 5a488475a8
commit 9cd1ddada4
16 changed files with 48 additions and 41 deletions
+1 -1
View File
@@ -113,7 +113,7 @@ static inline int group_addmember(FAR struct task_group_s *group, pid_t pid)
}
newmembers = (FAR pid_t *)
krealloc(group->tg_members, sizeof(pid_t) * newmax);
kmm_realloc(group->tg_members, sizeof(pid_t) * newmax);
if (!newmembers)
{