summaryrefslogtreecommitdiffstats
path: root/src/threads/thread.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/threads/thread.h')
-rw-r--r--src/threads/thread.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/threads/thread.h b/src/threads/thread.h
index b2a1982..fdaba60 100644
--- a/src/threads/thread.h
+++ b/src/threads/thread.h
@@ -23,9 +23,7 @@ typedef int tid_t;
#define TID_ERROR ((tid_t) -1) /* Error value for tid_t. */
/* The relationship between a parent and child process.
- It is setup by the child in
- The child reports its exit status by setting exit_status
- and upping exit_sema.
+ The child reports its exit status by setting exit_status.
The parent places the parent_child element in its list of children.
*/
struct parent_child