- Timestamp:
- 2005-08-29T11:57:26Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c245372b
- Parents:
- 229d5fc1
- Location:
- include
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
include/arch.h
r229d5fc1 rb52da8d7 35 35 #include <cpu.h> 36 36 #include <arch/cpu.h> 37 #include <arch/asm.h> 38 39 #include <proc/thread.h> 40 #include <proc/task.h> 37 41 38 42 /* … … 59 63 }; 60 64 65 #define THE ((the_t *)(get_stack_base())) 66 61 67 extern void arch_pre_mm_init(void); 62 68 extern void arch_post_mm_init(void); -
include/cpu.h
r229d5fc1 rb52da8d7 31 31 32 32 #include <arch/cpu.h> 33 #include <proc/thread.h>34 #include <proc/task.h>35 33 #include <proc/scheduler.h> 36 #include <time/clock.h>37 34 #include <synch/spinlock.h> 38 35 #include <synch/waitq.h> … … 41 38 #include <arch/context.h> 42 39 #include <config.h> 40 #include <list.h> 43 41 44 42 #define CPU_STACK_SIZE STACK_SIZE -
include/proc/task.h
r229d5fc1 rb52da8d7 32 32 #include <typedefs.h> 33 33 #include <synch/spinlock.h> 34 #include <proc/thread.h>35 #include <mm/vm.h>36 34 #include <list.h> 37 35 -
include/proc/thread.h
r229d5fc1 rb52da8d7 31 31 32 32 #include <arch/thread.h> 33 #include <proc/task.h>34 33 #include <synch/spinlock.h> 35 34 #include <arch/context.h> … … 39 38 #include <time/timeout.h> 40 39 #include <synch/rwlock.h> 41 #include <mm/page.h>42 40 #include <config.h> 43 41 #include <list.h>
Note:
See TracChangeset
for help on using the changeset viewer.