diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-01-24 18:56:31 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-01-24 18:56:31 +0000 |
commit | 13b6d9deab05770607f1dd185898507107e68de1 (patch) | |
tree | 92d2adce4747a13c236287a9e0c7c0cfbad1a04d /src | |
parent | 44f59eccabddb6e2470e72d1fdc844c3faa5e27c (diff) | |
download | ChibiOS-13b6d9deab05770607f1dd185898507107e68de1.tar.gz ChibiOS-13b6d9deab05770607f1dd185898507107e68de1.tar.bz2 ChibiOS-13b6d9deab05770607f1dd185898507107e68de1.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@677 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'src')
-rw-r--r-- | src/include/scheduler.h | 3 |
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; |