Changeset dc747e3 in mainline for generic/include/proc
- Timestamp:
- 2005-12-15T10:27:59Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7dd2561
- Parents:
- 3fc03fd
- Location:
- generic/include/proc
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
generic/include/proc/scheduler.h
r3fc03fd rdc747e3 41 41 /** Scheduler run queue structure. */ 42 42 struct runq { 43 spinlock_t lock;43 SPINLOCK_DECLARE(lock); 44 44 link_t rq_head; /**< List of ready threads. */ 45 45 count_t n; /**< Number of threads in rq_ready. */ -
generic/include/proc/task.h
r3fc03fd rdc747e3 35 35 36 36 struct task { 37 spinlock_t lock;37 SPINLOCK_DECLARE(lock); 38 38 link_t th_head; /**< List of threads contained in this task. */ 39 39 link_t tasks_link; /**< Link to other tasks within the system. */ -
generic/include/proc/thread.h
r3fc03fd rdc747e3 71 71 * 72 72 */ 73 spinlock_t lock;73 SPINLOCK_DECLARE(lock); 74 74 75 75 void (* thread_code)(void *); /**< Function implementing the thread. */
Note:
See TracChangeset
for help on using the changeset viewer.