From 13c615ac173aa44f515bb4db486c079788fd96a0 Mon Sep 17 00:00:00 2001 From: Oleg Hahm Date: Wed, 30 Apr 2014 19:17:05 +0200 Subject: [PATCH] documentation: fixed doxygen for schedstats --- core/include/sched.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/include/sched.h b/core/include/sched.h index f99f9a79c..5fde47dc2 100644 --- a/core/include/sched.h +++ b/core/include/sched.h @@ -108,10 +108,10 @@ extern clist_node_t *runqueues[SCHED_PRIO_LEVELS]; * Scheduler statistics */ typedef struct { - unsigned int laststart; /*< Time stamp of the last time this thread was - scheduled to run */ - unsigned int schedules; /*< How often the thread was scheduled to run */ - unsigned long runtime_ticks; /*< The total runtime of this thread in ticks */ + unsigned int laststart; /**< Time stamp of the last time this thread was + scheduled to run */ + unsigned int schedules; /**< How often the thread was scheduled to run */ + unsigned long runtime_ticks; /**< The total runtime of this thread in ticks */ } schedstat; /**