summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--c/src/exec/score/src/threadclose.c4
-rw-r--r--c/src/exec/score/src/threadinitialize.c5
-rw-r--r--c/src/exec/score/src/threadstart.c4
-rw-r--r--cpukit/score/src/threadclose.c4
-rw-r--r--cpukit/score/src/threadinitialize.c5
-rw-r--r--cpukit/score/src/threadstart.c4
6 files changed, 20 insertions, 6 deletions
diff --git a/c/src/exec/score/src/threadclose.c b/c/src/exec/score/src/threadclose.c
index a0f6009ba4..79f78827db 100644
--- a/c/src/exec/score/src/threadclose.c
+++ b/c/src/exec/score/src/threadclose.c
@@ -32,7 +32,9 @@
*
* DESCRIPTION:
*
- * XXX
+ * This routine frees all memory associated with the specified
+ * thread and removes it from the local object table so no further
+ * operations on this thread are allowed.
*/
void _Thread_Close(
diff --git a/c/src/exec/score/src/threadinitialize.c b/c/src/exec/score/src/threadinitialize.c
index f294d865bf..ceec9811eb 100644
--- a/c/src/exec/score/src/threadinitialize.c
+++ b/c/src/exec/score/src/threadinitialize.c
@@ -31,7 +31,10 @@
*
* _Thread_Initialize
*
- * XXX
+ * This routine initializes the specified the thread. It allocates
+ * all memory associated with this thread. It completes by adding
+ * the thread to the local object table so operations on this
+ * thread id are allowed.
*/
boolean _Thread_Initialize(
diff --git a/c/src/exec/score/src/threadstart.c b/c/src/exec/score/src/threadstart.c
index fa72eabfd9..6f26ba75c1 100644
--- a/c/src/exec/score/src/threadstart.c
+++ b/c/src/exec/score/src/threadstart.c
@@ -32,7 +32,9 @@
*
* DESCRIPTION:
*
- * XXX
+ * This routine initializes the executable information for a thread
+ * and makes it ready to execute. After this routine executes, the
+ * thread competes with all other threads for CPU time.
*/
boolean _Thread_Start(
diff --git a/cpukit/score/src/threadclose.c b/cpukit/score/src/threadclose.c
index a0f6009ba4..79f78827db 100644
--- a/cpukit/score/src/threadclose.c
+++ b/cpukit/score/src/threadclose.c
@@ -32,7 +32,9 @@
*
* DESCRIPTION:
*
- * XXX
+ * This routine frees all memory associated with the specified
+ * thread and removes it from the local object table so no further
+ * operations on this thread are allowed.
*/
void _Thread_Close(
diff --git a/cpukit/score/src/threadinitialize.c b/cpukit/score/src/threadinitialize.c
index f294d865bf..ceec9811eb 100644
--- a/cpukit/score/src/threadinitialize.c
+++ b/cpukit/score/src/threadinitialize.c
@@ -31,7 +31,10 @@
*
* _Thread_Initialize
*
- * XXX
+ * This routine initializes the specified the thread. It allocates
+ * all memory associated with this thread. It completes by adding
+ * the thread to the local object table so operations on this
+ * thread id are allowed.
*/
boolean _Thread_Initialize(
diff --git a/cpukit/score/src/threadstart.c b/cpukit/score/src/threadstart.c
index fa72eabfd9..6f26ba75c1 100644
--- a/cpukit/score/src/threadstart.c
+++ b/cpukit/score/src/threadstart.c
@@ -32,7 +32,9 @@
*
* DESCRIPTION:
*
- * XXX
+ * This routine initializes the executable information for a thread
+ * and makes it ready to execute. After this routine executes, the
+ * thread competes with all other threads for CPU time.
*/
boolean _Thread_Start(