summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2014-03-06 10:53:17 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2014-03-06 11:12:57 +0100
commit3ca84d0cba8ae1c21f096df746e5f21bd53c34b6 (patch)
treeb17294670be767cdbf5413e61c4e14ae74a6f142
parentscore: Delete _Thread_Dispatch_set_disable_level() (diff)
downloadrtems-3ca84d0cba8ae1c21f096df746e5f21bd53c34b6.tar.bz2
score: Fix per-CPU state documentation
-rw-r--r--cpukit/score/include/rtems/score/percpu.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/score/include/rtems/score/percpu.h b/cpukit/score/include/rtems/score/percpu.h
index ca9185ea7a..4b7fd6241f 100644
--- a/cpukit/score/include/rtems/score/percpu.h
+++ b/cpukit/score/include/rtems/score/percpu.h
@@ -76,7 +76,7 @@ typedef struct Thread_Control_struct Thread_Control;
* The processor state controls the life cycle of processors at the lowest
* level. No multi-threading or other high-level concepts matter here.
*
- * State changes must be initiated via _Per_CPU_Change_state(). This function
+ * State changes must be initiated via _Per_CPU_State_change(). This function
* may not return in case someone requested a shutdown. The
* _SMP_Send_message() function will be used to notify other processors about
* state changes if the other processor is in the up state.
@@ -220,9 +220,9 @@ typedef struct {
/**
* @brief Indicates the current state of the CPU.
*
- * This field is not protected by a lock.
+ * This field is not protected by the _Per_CPU_State_lock lock.
*
- * @see _Per_CPU_Change_state() and _Per_CPU_Wait_for_state().
+ * @see _Per_CPU_State_change().
*/
Per_CPU_State state;
#endif