Changeset 39cea6a in mainline for generic/include/proc
- Timestamp:
- 2006-04-13T17:38:03Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e185136
- Parents:
- 897ad60
- Location:
- generic/include/proc
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
generic/include/proc/scheduler.h
r897ad60 r39cea6a 53 53 extern void kcpulb(void *arg); 54 54 55 extern void before_thread_runs(void);56 extern void after_thread_ran(void);57 58 55 extern void sched_print_list(void); 59 56 … … 61 58 * To be defined by architectures: 62 59 */ 60 extern void before_task_runs_arch(void); 63 61 extern void before_thread_runs_arch(void); 64 62 extern void after_thread_ran_arch(void); -
generic/include/proc/task.h
r897ad60 r39cea6a 53 53 atomic_t active_calls; /**< Active asynchronous messages */ 54 54 55 task_arch_t arch; 55 task_arch_t arch; /**< Architecture specific task data. */ 56 56 }; 57 57
Note:
See TracChangeset
for help on using the changeset viewer.