git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7392 35acf78f-673a-0410-8e92-d51de3d6d3f4

This commit is contained in:
gdisirio 2014-10-13 14:03:18 +00:00
parent fe6b914617
commit 1ec4c62308
3 changed files with 6 additions and 3 deletions

View File

@ -245,6 +245,9 @@ struct thread {
void *p_mpool; void *p_mpool;
#endif #endif
#if CH_DBG_STATISTICS || defined(__DOXYGEN__) #if CH_DBG_STATISTICS || defined(__DOXYGEN__)
/**
* @brief Thread statistics.
*/
time_measurement_t p_stats; time_measurement_t p_stats;
#endif #endif
#if defined(CH_CFG_THREAD_EXTRA_FIELDS) #if defined(CH_CFG_THREAD_EXTRA_FIELDS)

View File

@ -46,11 +46,11 @@
* - Called from an ISR. * - Called from an ISR.
* - Not called from a critical zone. * - Not called from a critical zone.
* . * .
* - SV#6, misplaced @p chSysLockFromIsr(). * - SV#6, misplaced @p chSysLockFromISR().
* - Not called from an ISR. * - Not called from an ISR.
* - Called from a critical zone. * - Called from a critical zone.
* . * .
* - SV#7, misplaced @p chSysUnlockFromIsr(). * - SV#7, misplaced @p chSysUnlockFromISR().
* - Not called from an ISR. * - Not called from an ISR.
* - Not called from a critical zone. * - Not called from a critical zone.
* . * .

View File

@ -42,7 +42,7 @@
/*===========================================================================*/ /*===========================================================================*/
/** /**
* @brief @p RamStream specific data. * @brief @p MemStream specific data.
*/ */
#define _memory_stream_data \ #define _memory_stream_data \
_base_sequential_stream_data \ _base_sequential_stream_data \