summaryrefslogtreecommitdiff
path: root/nuttx/sched/pthread_mutexattrsetpshared.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/sched/pthread_mutexattrsetpshared.c')
-rw-r--r--nuttx/sched/pthread_mutexattrsetpshared.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/sched/pthread_mutexattrsetpshared.c b/nuttx/sched/pthread_mutexattrsetpshared.c
index f25ed4639..53a616fce 100644
--- a/nuttx/sched/pthread_mutexattrsetpshared.c
+++ b/nuttx/sched/pthread_mutexattrsetpshared.c
@@ -88,7 +88,7 @@ int pthread_mutexattr_setpshared(pthread_mutexattr_t *attr, int pshared)
{
int ret = OK;
- dbg("attr=0x%p pshared=%d\n", attr, pshared);
+ sdbg("attr=0x%p pshared=%d\n", attr, pshared);
if (!attr || (pshared != 0 && pshared != 1))
{
@@ -99,6 +99,6 @@ int pthread_mutexattr_setpshared(pthread_mutexattr_t *attr, int pshared)
attr->pshared = pshared;
}
- dbg("Returning %d\n", ret);
+ sdbg("Returning %d\n", ret);
return ret;
}