mirror of
https://github.com/apache/nuttx.git
synced 2026-06-06 16:50:55 +08:00
Should use bdbg, not dbg
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2393 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
@@ -139,7 +139,7 @@ int exec_module(FAR const struct binary_s *bin, int priority)
|
||||
if (ret < 0)
|
||||
{
|
||||
err = errno;
|
||||
dbg("task_init() failed: %d\n", err);
|
||||
bdbg("task_init() failed: %d\n", err);
|
||||
goto errout_with_stack;
|
||||
}
|
||||
|
||||
@@ -163,7 +163,7 @@ int exec_module(FAR const struct binary_s *bin, int priority)
|
||||
if (ret < 0)
|
||||
{
|
||||
err = errno;
|
||||
dbg("task_activate() failed: %d\n", err);
|
||||
bdbg("task_activate() failed: %d\n", err);
|
||||
goto errout_with_stack;
|
||||
}
|
||||
return (int)pid;
|
||||
@@ -182,7 +182,7 @@ errout_with_tcb:
|
||||
free(tcb);
|
||||
errout:
|
||||
errno = err;
|
||||
dbg("returning errno: %d\n", err);
|
||||
bdbg("returning errno: %d\n", err);
|
||||
return ERROR;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user