Changeset 76ca3f7 in mainline for kernel/generic/src
- Timestamp:
- 2010-03-23T20:49:54Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e417b96
- Parents:
- b48ebd19 (diff), 63f8966 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Location:
- kernel/generic/src
- Files:
-
- 30 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/adt/bitmap.c
rb48ebd19 r76ca3f7 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
rb48ebd19 r76ca3f7 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
rb48ebd19 r76ca3f7 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> 51 51 #include <config.h> 52 52 #include <func.h> 53 #include <str ing.h>53 #include <str.h> 54 54 #include <macros.h> 55 55 #include <debug.h> -
kernel/generic/src/console/console.c
rb48ebd19 r76ca3f7 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> … … 51 51 #include <syscall/copy.h> 52 52 #include <errno.h> 53 #include <str ing.h>53 #include <str.h> 54 54 55 55 #define KLOG_PAGES 4 -
kernel/generic/src/console/kconsole.c
rb48ebd19 r76ca3f7 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> … … 51 51 #include <debug.h> 52 52 #include <func.h> 53 #include <str ing.h>53 #include <str.h> 54 54 #include <macros.h> 55 55 #include <sysinfo/sysinfo.h> … … 58 58 #include <errno.h> 59 59 #include <putchar.h> 60 #include <str ing.h>60 #include <str.h> 61 61 62 62 /** Simple kernel console. -
kernel/generic/src/cpu/cpu.c
rb48ebd19 r76ca3f7 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
rb48ebd19 r76ca3f7 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
rb48ebd19 r76ca3f7 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
rb48ebd19 r76ca3f7 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
rb48ebd19 r76ca3f7 38 38 #include <symtab.h> 39 39 #include <byteorder.h> 40 #include <str ing.h>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
rb48ebd19 r76ca3f7 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
rb48ebd19 r76ca3f7 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
rb48ebd19 r76ca3f7 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/lib/str.c
rb48ebd19 r76ca3f7 102 102 */ 103 103 104 #include <str ing.h>104 #include <str.h> 105 105 #include <print.h> 106 106 #include <cpu.h> -
kernel/generic/src/main/kinit.c
rb48ebd19 r76ca3f7 66 66 #include <ipc/ipc.h> 67 67 #include <debug.h> 68 #include <str ing.h>68 #include <str.h> 69 69 70 70 #ifdef CONFIG_SMP -
kernel/generic/src/main/uinit.c
rb48ebd19 r76ca3f7 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
rb48ebd19 r76ca3f7 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
rb48ebd19 r76ca3f7 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
rb48ebd19 r76ca3f7 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
rb48ebd19 r76ca3f7 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
rb48ebd19 r76ca3f7 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
rb48ebd19 r76ca3f7 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
rb48ebd19 r76ca3f7 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/printf_core.c
rb48ebd19 r76ca3f7 41 41 #include <stdarg.h> 42 42 #include <macros.h> 43 #include <str ing.h>43 #include <str.h> 44 44 #include <arch.h> 45 45 -
kernel/generic/src/printf/vprintf.c
rb48ebd19 r76ca3f7 38 38 #include <synch/spinlock.h> 39 39 #include <arch/asm.h> 40 #include <arch/types.h>41 40 #include <typedefs.h> 42 #include <string.h> 41 #include <typedefs.h> 42 #include <str.h> 43 43 44 44 SPINLOCK_STATIC_INITIALIZE_NAME(printf_lock, "*printf_lock"); -
kernel/generic/src/printf/vsnprintf.c
rb48ebd19 r76ca3f7 35 35 #include <print.h> 36 36 #include <printf/printf_core.h> 37 #include <str ing.h>37 #include <str.h> 38 38 #include <memstr.h> 39 39 #include <errno.h> -
kernel/generic/src/proc/task.c
rb48ebd19 r76ca3f7 53 53 #include <errno.h> 54 54 #include <func.h> 55 #include <str ing.h>55 #include <str.h> 56 56 #include <memstr.h> 57 57 #include <syscall/copy.h> -
kernel/generic/src/synch/waitq.c
rb48ebd19 r76ca3f7 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
rb48ebd19 r76ca3f7 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
rb48ebd19 r76ca3f7 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> -
kernel/generic/src/udebug/udebug_ops.c
rb48ebd19 r76ca3f7 46 46 #include <errno.h> 47 47 #include <print.h> 48 #include <str ing.h>48 #include <str.h> 49 49 #include <syscall/copy.h> 50 50 #include <ipc/ipc.h>
Note:
See TracChangeset
for help on using the changeset viewer.