Changeset 7509ddc in mainline for generic/include/proc/thread.h
- Timestamp:
- 2006-06-04T21:54:49Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 34dcd3f
- Parents:
- 2cb5e64
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
generic/include/proc/thread.h
r2cb5e64 r7509ddc 73 73 * 74 74 * Protects the whole thread structure except list links above. 75 * Must be acquired before T.lock for each T of type task_t.76 *77 75 */ 78 76 SPINLOCK_DECLARE(lock); … … 99 97 /** True if this thread is executing copy_to_uspace(). False otherwise. */ 100 98 bool in_copy_to_uspace; 101 99 100 /** 101 * If true, the thread will not go to sleep at all and will 102 * call thread_exit() before returning to userspace. 103 */ 104 bool interrupted; 105 102 106 bool detached; /**< If true, thread_join_timeout() cannot be used on this thread. */ 103 107 waitq_t join_wq; /**< Waitq for thread_join_timeout(). */
Note:
See TracChangeset
for help on using the changeset viewer.