Rename kmalloc to kmm_malloc for consistency

This commit is contained in:
Gregory Nutt
2014-08-31 17:26:36 -06:00
parent 9023221f2b
commit 1780810d3d
111 changed files with 197 additions and 187 deletions
+1 -1
View File
@@ -100,7 +100,7 @@ static struct posix_timer_s *timer_allocate(void)
{
/* Allocate a new timer from the heap */
ret = (struct posix_timer_s*)kmalloc(sizeof(struct posix_timer_s));
ret = (struct posix_timer_s*)kmm_malloc(sizeof(struct posix_timer_s));
pt_flags = 0;
}