aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/include/scheduler.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/scheduler.h b/src/include/scheduler.h
index ac94183d9..bd44451d6 100644
--- a/src/include/scheduler.h
+++ b/src/include/scheduler.h
@@ -61,10 +61,11 @@ typedef struct {
tprio_t r_prio;
/* End of the fields shared with the Thread structure. */
#ifdef CH_USE_ROUNDROBIN
+ /** Round robin counter.*/
cnt_t r_preempt;
#endif
#ifndef CH_CURRP_REGISTER_CACHE
- /** the currently running thread */
+ /** The currently running thread.*/
Thread *r_current;
#endif
} ReadyList;