Changeset 48e7dd6 in mainline for generic/include/proc/thread.h
- Timestamp:
- 2006-06-08T09:03:29Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 22bea15
- Parents:
- 4bc141c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
generic/include/proc/thread.h
r4bc141c r48e7dd6 47 47 #define THREAD_STACK_SIZE STACK_SIZE 48 48 49 /**< Thread states. */ 49 50 enum state { 50 51 Invalid, /**< It is an error, if thread is found in this state. */ … … 58 59 59 60 extern char *thread_states[]; 61 62 /**< Join types. */ 63 typedef enum { 64 None, 65 TaskClnp, /**< The thread will be joined by ktaskclnp thread. */ 66 TaskGC /**< The thread will be joined by ktaskgc thread. */ 67 } thread_join_type_t; 60 68 61 69 #define X_WIRED (1<<0) … … 104 112 bool interrupted; 105 113 114 thread_join_type_t join_type; /**< Who joinins the thread. */ 106 115 bool detached; /**< If true, thread_join_timeout() cannot be used on this thread. */ 107 116 waitq_t join_wq; /**< Waitq for thread_join_timeout(). */
Note:
See TracChangeset
for help on using the changeset viewer.