summaryrefslogtreecommitdiffstats
path: root/nuttx/sched/task_create.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/sched/task_create.c')
-rw-r--r--nuttx/sched/task_create.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/nuttx/sched/task_create.c b/nuttx/sched/task_create.c
index dd7da112e4..c1cf117725 100644
--- a/nuttx/sched/task_create.c
+++ b/nuttx/sched/task_create.c
@@ -226,8 +226,6 @@ STATUS _task_init(_TCB *tcb, char *name, int priority,
{
STATUS ret;
- vdbg("%s: Entry\n", __FUNCTION__);
-
/* Assign a unique task ID to the task. */
ret = task_assignpid(tcb);
@@ -382,8 +380,6 @@ STATUS task_activate(_TCB *tcb)
uint32 flags;
#endif
- vdbg("%s: Entry\n", __FUNCTION__);
-
#ifdef CONFIG_SCHED_INSTRUMENTATION
flags = irqsave();
@@ -449,8 +445,6 @@ int task_create(char *name, int priority,
STATUS status;
pid_t pid;
- vdbg("%s: Entry\n", __FUNCTION__);
-
/* Allocate a TCB for the new task. */
tcb = (_TCB*)kzmalloc(sizeof(_TCB));