Changes in kernel/generic/include/proc/thread.h [1ba37fa:a000878c] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/proc/thread.h
r1ba37fa ra000878c 69 69 #define THREAD_FLAG_NOATTACH (1 << 3) 70 70 71 /* We need state_t enum definition */ 72 #include <ps/taskinfo.h> 71 /** Thread states. */ 72 typedef enum { 73 /** It is an error, if thread is found in this state. */ 74 Invalid, 75 /** State of a thread that is currently executing on some CPU. */ 76 Running, 77 /** Thread in this state is waiting for an event. */ 78 Sleeping, 79 /** State of threads in a run queue. */ 80 Ready, 81 /** Threads are in this state before they are first readied. */ 82 Entering, 83 /** After a thread calls thread_exit(), it is put into Exiting state. */ 84 Exiting, 85 /** Threads that were not detached but exited are Lingering. */ 86 Lingering 87 } state_t; 73 88 74 89 /** Thread structure. There is one per thread. */ … … 174 189 175 190 /** Thread accounting. */ 176 uint64_t ucycles; 177 uint64_t kcycles; 191 uint64_t cycles; 178 192 /** Last sampled cycle. */ 179 193 uint64_t last_cycle; … … 238 252 extern void thread_print_list(void); 239 253 extern void thread_destroy(thread_t *); 240 extern void thread_update_accounting( bool);254 extern void thread_update_accounting(void); 241 255 extern bool thread_exists(thread_t *); 242 256
Note:
See TracChangeset
for help on using the changeset viewer.