mirror of
https://github.com/apache/nuttx.git
synced 2026-06-06 00:14:22 +08:00
Debug can now be selectively enabled by subystem
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@404 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
@@ -67,7 +67,7 @@ int pthread_cond_init(pthread_cond_t *cond, pthread_condattr_t *attr)
|
||||
{
|
||||
int ret = OK;
|
||||
|
||||
dbg("cond=0x%p attr=0x%p\n", cond, attr);
|
||||
sdbg("cond=0x%p attr=0x%p\n", cond, attr);
|
||||
|
||||
if (!cond)
|
||||
{
|
||||
@@ -83,7 +83,7 @@ int pthread_cond_init(pthread_cond_t *cond, pthread_condattr_t *attr)
|
||||
ret = EINVAL;
|
||||
}
|
||||
|
||||
dbg("Returning %d\n", ret);
|
||||
sdbg("Returning %d\n", ret);
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user