mirror of
https://github.com/apache/nuttx.git
synced 2026-06-06 16:50:55 +08:00
Replace all occurrences of vdbg with vinfo
This commit is contained in:
@@ -303,14 +303,14 @@ FAR struct task_tcb_s *task_vforksetup(start_t retaddr)
|
||||
|
||||
/* Initialize the task control block. This calls up_initial_state() */
|
||||
|
||||
svdbg("Child priority=%d start=%p\n", priority, retaddr);
|
||||
sinfo("Child priority=%d start=%p\n", priority, retaddr);
|
||||
ret = task_schedsetup(child, priority, retaddr, parent->entry.main, ttype);
|
||||
if (ret < OK)
|
||||
{
|
||||
goto errout_with_tcb;
|
||||
}
|
||||
|
||||
svdbg("parent=%p, returning child=%p\n", parent, child);
|
||||
sinfo("parent=%p, returning child=%p\n", parent, child);
|
||||
return child;
|
||||
|
||||
errout_with_tcb:
|
||||
@@ -369,7 +369,7 @@ pid_t task_vforkstart(FAR struct task_tcb_s *child)
|
||||
int rc;
|
||||
int ret;
|
||||
|
||||
svdbg("Starting Child TCB=%p, parent=%p\n", child, this_task());
|
||||
sinfo("Starting Child TCB=%p, parent=%p\n", child, this_task());
|
||||
DEBUGASSERT(child);
|
||||
|
||||
/* Duplicate the original argument list in the forked child TCB */
|
||||
|
||||
Reference in New Issue
Block a user