Changeset d99c1d2 in mainline for kernel/generic/src
- Timestamp:
- 2010-03-23T14:41:06Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1b1164e8
- Parents:
- 7c682dd1
- Location:
- kernel/generic/src
- Files:
-
- 25 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/adt/bitmap.c
r7c682dd1 rd99c1d2 39 39 40 40 #include <adt/bitmap.h> 41 #include < arch/types.h>41 #include <typedefs.h> 42 42 #include <align.h> 43 43 #include <debug.h> -
kernel/generic/src/adt/hash_table.c
r7c682dd1 rd99c1d2 40 40 #include <adt/hash_table.h> 41 41 #include <adt/list.h> 42 #include < arch/types.h>42 #include <typedefs.h> 43 43 #include <debug.h> 44 44 #include <mm/slab.h> -
kernel/generic/src/console/cmd.c
r7c682dd1 rd99c1d2 46 46 #include <print.h> 47 47 #include <panic.h> 48 #include < arch/types.h>48 #include <typedefs.h> 49 49 #include <adt/list.h> 50 50 #include <arch.h> -
kernel/generic/src/console/console.c
r7c682dd1 rd99c1d2 39 39 #include <synch/waitq.h> 40 40 #include <synch/spinlock.h> 41 #include < arch/types.h>41 #include <typedefs.h> 42 42 #include <ddi/irq.h> 43 43 #include <ddi/ddi.h> -
kernel/generic/src/console/kconsole.c
r7c682dd1 rd99c1d2 45 45 #include <print.h> 46 46 #include <panic.h> 47 #include < arch/types.h>47 #include <typedefs.h> 48 48 #include <adt/list.h> 49 49 #include <arch.h> -
kernel/generic/src/cpu/cpu.c
r7c682dd1 rd99c1d2 42 42 #include <mm/page.h> 43 43 #include <mm/frame.h> 44 #include < arch/types.h>44 #include <typedefs.h> 45 45 #include <config.h> 46 46 #include <panic.h> -
kernel/generic/src/ddi/device.c
r7c682dd1 rd99c1d2 35 35 */ 36 36 37 #include < arch/types.h>37 #include <typedefs.h> 38 38 #include <ddi/device.h> 39 39 #include <atomic.h> -
kernel/generic/src/ddi/irq.c
r7c682dd1 rd99c1d2 71 71 #include <adt/hash_table.h> 72 72 #include <mm/slab.h> 73 #include < arch/types.h>73 #include <typedefs.h> 74 74 #include <synch/spinlock.h> 75 75 #include <console/console.h> -
kernel/generic/src/debug/stacktrace.c
r7c682dd1 rd99c1d2 35 35 #include <stacktrace.h> 36 36 #include <interrupt.h> 37 #include < arch/types.h>37 #include <typedefs.h> 38 38 #include <symtab.h> 39 39 -
kernel/generic/src/debug/symtab.c
r7c682dd1 rd99c1d2 40 40 #include <str.h> 41 41 #include <print.h> 42 #include < arch/types.h>42 #include <typedefs.h> 43 43 #include <typedefs.h> 44 44 #include <errno.h> -
kernel/generic/src/ipc/event.c
r7c682dd1 rd99c1d2 38 38 #include <ipc/event_types.h> 39 39 #include <mm/slab.h> 40 #include < arch/types.h>40 #include <typedefs.h> 41 41 #include <synch/spinlock.h> 42 42 #include <console/console.h> -
kernel/generic/src/lib/elf.c
r7c682dd1 rd99c1d2 39 39 #include <lib/elf.h> 40 40 #include <debug.h> 41 #include < arch/types.h>41 #include <typedefs.h> 42 42 #include <mm/as.h> 43 43 #include <mm/frame.h> -
kernel/generic/src/lib/memstr.c
r7c682dd1 rd99c1d2 43 43 44 44 #include <memstr.h> 45 #include < arch/types.h>45 #include <typedefs.h> 46 46 #include <align.h> 47 47 -
kernel/generic/src/main/uinit.c
r7c682dd1 rd99c1d2 42 42 43 43 #include <main/uinit.h> 44 #include < arch/types.h>44 #include <typedefs.h> 45 45 #include <proc/thread.h> 46 46 #include <userspace.h> -
kernel/generic/src/mm/as.c
r7c682dd1 rd99c1d2 75 75 #include <config.h> 76 76 #include <align.h> 77 #include < arch/types.h>77 #include <typedefs.h> 78 78 #include <syscall/copy.h> 79 79 #include <arch/interrupt.h> -
kernel/generic/src/mm/backend_anon.c
r7c682dd1 rd99c1d2 47 47 #include <adt/btree.h> 48 48 #include <errno.h> 49 #include < arch/types.h>49 #include <typedefs.h> 50 50 #include <align.h> 51 51 #include <arch.h> -
kernel/generic/src/mm/backend_elf.c
r7c682dd1 rd99c1d2 38 38 #include <lib/elf.h> 39 39 #include <debug.h> 40 #include < arch/types.h>40 #include <typedefs.h> 41 41 #include <mm/as.h> 42 42 #include <mm/frame.h> -
kernel/generic/src/mm/backend_phys.c
r7c682dd1 rd99c1d2 38 38 39 39 #include <debug.h> 40 #include < arch/types.h>40 #include <typedefs.h> 41 41 #include <mm/as.h> 42 42 #include <mm/page.h> -
kernel/generic/src/mm/buddy.c
r7c682dd1 rd99c1d2 41 41 #include <mm/buddy.h> 42 42 #include <mm/frame.h> 43 #include < arch/types.h>43 #include <typedefs.h> 44 44 #include <debug.h> 45 45 #include <print.h> -
kernel/generic/src/mm/frame.c
r7c682dd1 rd99c1d2 43 43 */ 44 44 45 #include < arch/types.h>45 #include <typedefs.h> 46 46 #include <mm/frame.h> 47 47 #include <mm/as.h> -
kernel/generic/src/mm/page.c
r7c682dd1 rd99c1d2 63 63 #include <mm/frame.h> 64 64 #include <arch/barrier.h> 65 #include < arch/types.h>65 #include <typedefs.h> 66 66 #include <arch/asm.h> 67 67 #include <memstr.h> -
kernel/generic/src/printf/vprintf.c
r7c682dd1 rd99c1d2 38 38 #include <synch/spinlock.h> 39 39 #include <arch/asm.h> 40 #include < arch/types.h>40 #include <typedefs.h> 41 41 #include <typedefs.h> 42 42 #include <str.h> -
kernel/generic/src/synch/waitq.c
r7c682dd1 rd99c1d2 49 49 #include <proc/scheduler.h> 50 50 #include <arch/asm.h> 51 #include < arch/types.h>51 #include <typedefs.h> 52 52 #include <time/timeout.h> 53 53 #include <arch.h> -
kernel/generic/src/time/delay.c
r7c682dd1 rd99c1d2 37 37 38 38 #include <time/delay.h> 39 #include < arch/types.h>39 #include <typedefs.h> 40 40 #include <cpu.h> 41 41 #include <arch/asm.h> -
kernel/generic/src/time/timeout.c
r7c682dd1 rd99c1d2 37 37 38 38 #include <time/timeout.h> 39 #include < arch/types.h>39 #include <typedefs.h> 40 40 #include <config.h> 41 41 #include <panic.h>
Note:
See TracChangeset
for help on using the changeset viewer.