diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-05-09 19:36:30 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-05-09 19:36:30 +0000 |
commit | 6d3145c04b2f6be505c44589fdb8ecbe952b4b85 (patch) | |
tree | d9b571b3ba3606f742231eeaef62abdafa13d1f0 /src/include/threads.h | |
parent | 83d50f08219d05f65b55f686e74e5cb4e7352092 (diff) | |
download | ChibiOS-6d3145c04b2f6be505c44589fdb8ecbe952b4b85.tar.gz ChibiOS-6d3145c04b2f6be505c44589fdb8ecbe952b4b85.tar.bz2 ChibiOS-6d3145c04b2f6be505c44589fdb8ecbe952b4b85.zip |
Fixed more troubles with test_cpu_pulse().
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@964 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'src/include/threads.h')
-rw-r--r-- | src/include/threads.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/threads.h b/src/include/threads.h index e7c56d3c7..8e3f7a782 100644 --- a/src/include/threads.h +++ b/src/include/threads.h @@ -51,7 +51,7 @@ struct Thread { cnt_t p_locks; /**< Number of nested locks.*/ #endif #if CH_DBG_THREADS_PROFILING - systime_t p_time; /**< Consumed time. + volatile systime_t p_time; /**< Consumed time. @note This field can overflow.*/ #endif /* |