Changeset 831a04d0 in mainline for kernel/generic/include/proc/task.h
- Timestamp:
- 2007-01-29T20:01:12Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b612ded6
- Parents:
- 1004b37
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/proc/task.h
r1004b37 r831a04d0 134 134 } task_t; 135 135 136 typedef void (* timeout_handler_t)(void *arg);137 138 typedef struct {139 SPINLOCK_DECLARE(lock);140 141 link_t link; /**< Link to the list of active timeouts on THE->cpu */142 143 uint64_t ticks; /**< Timeout will be activated in this amount of clock() ticks. */144 145 timeout_handler_t handler; /**< Function that will be called on timeout activation. */146 void *arg; /**< Argument to be passed to handler() function. */147 148 cpu_t *cpu; /**< On which processor is this timeout registered. */149 } timeout_t;150 151 /** Thread states. */152 typedef enum {153 Invalid, /**< It is an error, if thread is found in this state. */154 Running, /**< State of a thread that is currently executing on some CPU. */155 Sleeping, /**< Thread in this state is waiting for an event. */156 Ready, /**< State of threads in a run queue. */157 Entering, /**< Threads are in this state before they are first readied. */158 Exiting, /**< After a thread calls thread_exit(), it is put into Exiting state. */159 Undead /**< Threads that were not detached but exited are in the Undead state. */160 } state_t;161 162 /** Join types. */163 typedef enum {164 None,165 TaskClnp, /**< The thread will be joined by ktaskclnp thread. */166 TaskGC /**< The thread will be joined by ktaskgc thread. */167 } thread_join_type_t;168 169 136 SPINLOCK_EXTERN(tasks_lock); 170 137 extern btree_t tasks_btree;
Note:
See TracChangeset
for help on using the changeset viewer.