summaryrefslogtreecommitdiffstats
path: root/nuttx/sched/pthread_attrsetschedpolicy.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/sched/pthread_attrsetschedpolicy.c')
-rw-r--r--nuttx/sched/pthread_attrsetschedpolicy.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/sched/pthread_attrsetschedpolicy.c b/nuttx/sched/pthread_attrsetschedpolicy.c
index 09a9e92a03..89c0b7a134 100644
--- a/nuttx/sched/pthread_attrsetschedpolicy.c
+++ b/nuttx/sched/pthread_attrsetschedpolicy.c
@@ -90,7 +90,7 @@ int pthread_attr_setschedpolicy(pthread_attr_t *attr, int policy)
{
int ret;
- dbg("attr=0x%p policy=%d\n", attr, policy);
+ sdbg("attr=0x%p policy=%d\n", attr, policy);
#if CONFIG_RR_INTERVAL > 0
if (!attr || (policy != SCHED_FIFO && policy != SCHED_RR))
@@ -106,6 +106,6 @@ int pthread_attr_setschedpolicy(pthread_attr_t *attr, int policy)
ret = OK;
}
- dbg("Returning %d\n", ret);
+ sdbg("Returning %d\n", ret);
return ret;
}