Skip to content
Snippets Groups Projects
Commit f6c102d4 authored by Gregory Nutt's avatar Gregory Nutt
Browse files

A few cosmetic fixes from the last commit

parent 55ba5f8f
No related branches found
No related tags found
No related merge requests found
......@@ -486,7 +486,7 @@ struct tcb_s
#endif
#ifdef CONFIG_SCHED_SPORADIC
uint8_t low_priority; /* Sporadic low priority */
uint8_t max_repl; /* Max. replenishments */
uint8_t max_repl; /* Max. replenishments */
#endif
uint8_t task_state; /* Current state of the thread */
......
......@@ -168,10 +168,10 @@ struct pthread_attr_s
{
uint8_t priority; /* Priority of the pthread */
uint8_t policy; /* Pthread scheduler policy */
uint8_t inheritsched; /* Inherit parent prio/policy? */
uint8_t inheritsched; /* Inherit parent priority/policy? */
#ifdef CONFIG_SCHED_SPORADIC
uint8_t low_priority; /* Low scheduling priority*/
uint8_t low_priority; /* Low scheduling priority */
uint8_t max_repl; /* Maximum pending replenishments */
#endif
......
......@@ -103,10 +103,9 @@ struct posix_spawnattr_s
#endif
#ifdef CONFIG_SCHED_SPORADIC
struct timespec repl_period; /* Replenishment period */
struct timespec budget; /* Initial budget */
struct timespec repl_period; /* Replenishment period */
struct timespec budget; /* Initial budget */
#endif
};
typedef struct posix_spawnattr_s posix_spawnattr_t;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment