summaryrefslogtreecommitdiff
path: root/nuttx/sched/pthread_create.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/sched/pthread_create.c')
-rw-r--r--nuttx/sched/pthread_create.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/nuttx/sched/pthread_create.c b/nuttx/sched/pthread_create.c
index 5d9104c75..a369f0b49 100644
--- a/nuttx/sched/pthread_create.c
+++ b/nuttx/sched/pthread_create.c
@@ -65,10 +65,10 @@
pthread_attr_t g_default_pthread_attr =
{
- .stacksize = PTHREAD_STACK_DEFAULT,
- .priority = PTHREAD_DEFAULT_PRIORITY,
- .policy = SCHED_RR,
- .inheritsched = PTHREAD_EXPLICIT_SCHED,
+ PTHREAD_STACK_DEFAULT, /* stacksize */
+ PTHREAD_DEFAULT_PRIORITY, /* priority */
+ SCHED_RR, /* policy */
+ PTHREAD_EXPLICIT_SCHED, /* inheritsched */
};
/************************************************************