Changeset da1f9dc in mainline
- Timestamp:
- 2007-01-22T12:44:53Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 62c63fc
- Parents:
- f429331
- Location:
- kernel/generic/include
- Files:
-
- 2 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[]; -
kernel/generic/include/typedefs.h
rf429331 rda1f9dc 49 49 50 50 typedef struct task task_t; 51 typedef enum state state_t;52 51 typedef struct thread thread_t; 53 52 typedef struct context context_t;
Note:
See TracChangeset
for help on using the changeset viewer.