Changeset da1f9dc in mainline for kernel/generic/include/proc/thread.h
- Timestamp:
- 2007-01-22T12:44:53Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 62c63fc
- Parents:
- f429331
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/proc/thread.h
rf429331 rda1f9dc 54 54 55 55 /** Thread states. */ 56 enum state{56 typedef enum { 57 57 Invalid, /**< It is an error, if thread is found in this state. */ 58 58 Running, /**< State of a thread that is currently executing on some CPU. */ … … 62 62 Exiting, /**< After a thread calls thread_exit(), it is put into Exiting state. */ 63 63 Undead /**< Threads that were not detached but exited are in the Undead state. */ 64 } ;64 } state_t; 65 65 66 66 extern char *thread_states[];
Note:
See TracChangeset
for help on using the changeset viewer.