summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2014-04-16 09:10:52 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2014-04-16 09:10:52 +0200
commit2e06be4d4f3028e72cf1e6ee433dfddabc16cddc (patch)
treef40801cf1484d1527016bedd559a1b553493a187
parentscore: Critical fix for SMP (diff)
downloadrtems-2e06be4d4f3028e72cf1e6ee433dfddabc16cddc.tar.bz2
score: Documentation
-rw-r--r--cpukit/score/include/rtems/score/thread.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/cpukit/score/include/rtems/score/thread.h b/cpukit/score/include/rtems/score/thread.h
index 5215d6a8ce..90df3a74dc 100644
--- a/cpukit/score/include/rtems/score/thread.h
+++ b/cpukit/score/include/rtems/score/thread.h
@@ -585,6 +585,11 @@ struct Thread_Control_struct {
*/
Chain_Control Key_Chain;
+ /**
+ * @brief Thread life-cycle control.
+ *
+ * Control state changes triggered by thread restart and delete requests.
+ */
Thread_Life_control Life;
/**