- +-----------------+
- | CS 140 |
- | SAMPLE PROJECT |
- | DESIGN DOCUMENT |
- +-----------------+
+
+ +-----------------+
+ | CS 140 |
+ | SAMPLE PROJECT |
+ | DESIGN DOCUMENT |
+ +-----------------+
---- GROUP ----
None.
- JOIN
- ====
+ JOIN
+ ====
---- DATA STRUCTURES ----
/* Latch. */
struct latch
{
- bool released; /* Released yet? */
- struct lock monitor_lock; /* Monitor lock. */
- struct condition rel_cond; /* Signaled when released. */
+ bool released; /* Released yet? */
+ struct lock monitor_lock; /* Monitor lock. */
+ struct condition rel_cond; /* Signaled when released. */
};
Added to struct thread: