Changeset 016acbe in mainline for generic/include/proc/thread.h
- Timestamp:
- 2006-04-09T14:58:42Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7f6e755
- Parents:
- 203f4c3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
generic/include/proc/thread.h
r203f4c3 r016acbe 39 39 #include <synch/rwlock.h> 40 40 #include <config.h> 41 #include <adt/btree.h> 41 42 #include <adt/list.h> 42 43 #include <mm/slab.h> … … 66 67 link_t wq_link; /**< Wait queue link. */ 67 68 link_t th_link; /**< Links to threads within containing task. */ 68 link_t threads_link; /**< Link to the list of all threads. */69 69 70 70 /** Lock protecting thread structure. … … 131 131 extern spinlock_t threads_lock; 132 132 133 extern link_t threads_head; /**< List of all threads in the system. */133 extern btree_t threads_btree; /**< B+tree containing all threads. */ 134 134 135 135 extern void thread_init(void); … … 144 144 extern void thread_print_list(void); 145 145 extern void thread_destroy(thread_t *t); 146 extern bool thread_exists(thread_t *t); 146 147 147 148 /* Fpu context slab cache */
Note:
See TracChangeset
for help on using the changeset viewer.