Changeset 55b77d9 in mainline for kernel/generic/include/proc
- Timestamp:
- 2011-06-17T20:39:16Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8f164724
- Parents:
- 98caf49
- Location:
- kernel/generic/include/proc
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/proc/scheduler.h
r98caf49 r55b77d9 48 48 typedef struct { 49 49 IRQ_SPINLOCK_DECLARE(lock); 50 li nk_t rq_head;/**< List of ready threads. */51 size_t n; 50 list_t rq; /**< List of ready threads. */ 51 size_t n; /**< Number of threads in rq_ready. */ 52 52 } runq_t; 53 53 -
kernel/generic/include/proc/task.h
r98caf49 r55b77d9 73 73 char name[TASK_NAME_BUFLEN]; 74 74 /** List of threads contained in this task. */ 75 li nk_t th_head;75 list_t threads; 76 76 /** Address space. */ 77 77 as_t *as; … … 94 94 stats_ipc_t ipc_info; /**< IPC statistics */ 95 95 /** List of synchronous answerboxes. */ 96 li nk_t sync_box_head;96 list_t sync_boxes; 97 97 98 98 #ifdef CONFIG_UDEBUG
Note:
See TracChangeset
for help on using the changeset viewer.