Reanem kzalloc to kmm_zalloc for consistency

This commit is contained in:
Gregory Nutt
2014-08-31 17:34:44 -06:00
parent ff2442a02e
commit 205260d5e2
76 changed files with 116 additions and 116 deletions
+1 -1
View File
@@ -115,7 +115,7 @@ static int thread_create(FAR const char *name, uint8_t ttype, int priority,
/* Allocate a TCB for the new task. */
tcb = (FAR struct task_tcb_s *)kzalloc(sizeof(struct task_tcb_s));
tcb = (FAR struct task_tcb_s *)kmm_zalloc(sizeof(struct task_tcb_s));
if (!tcb)
{
sdbg("ERROR: Failed to allocate TCB\n");