Changeset d99c1d2 in mainline for kernel/arch/ia32/include
- Timestamp:
- 2010-03-23T14:41:06Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1b1164e8
- Parents:
- 7c682dd1
- Location:
- kernel/arch/ia32/include
- Files:
-
- 22 edited
-
asm.h (modified) (1 diff)
-
atomic.h (modified) (1 diff)
-
bios/bios.h (modified) (1 diff)
-
boot/memmap.h (modified) (1 diff)
-
context.h (modified) (1 diff)
-
cpuid.h (modified) (1 diff)
-
drivers/i8254.h (modified) (1 diff)
-
drivers/i8259.h (modified) (1 diff)
-
drivers/vesa.h (modified) (1 diff)
-
faddr.h (modified) (2 diffs)
-
fpu_context.h (modified) (1 diff)
-
interrupt.h (modified) (1 diff)
-
mm/asid.h (modified) (1 diff)
-
mm/frame.h (modified) (1 diff)
-
mm/page.h (modified) (1 diff)
-
pm.h (modified) (1 diff)
-
proc/task.h (modified) (1 diff)
-
proc/thread.h (modified) (2 diffs)
-
smp/apic.h (modified) (1 diff)
-
smp/mps.h (modified) (1 diff)
-
smp/smp.h (modified) (1 diff)
-
types.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia32/include/asm.h
r7c682dd1 rd99c1d2 38 38 39 39 #include <arch/pm.h> 40 #include <arch/types.h>41 40 #include <typedefs.h> 42 41 #include <config.h> -
kernel/arch/ia32/include/atomic.h
r7c682dd1 rd99c1d2 36 36 #define KERN_ia32_ATOMIC_H_ 37 37 38 #include < arch/types.h>38 #include <typedefs.h> 39 39 #include <arch/barrier.h> 40 40 #include <preemption.h> -
kernel/arch/ia32/include/bios/bios.h
r7c682dd1 rd99c1d2 36 36 #define KERN_ia32_BIOS_H_ 37 37 38 #include < arch/types.h>38 #include <typedefs.h> 39 39 40 40 #define BIOS_EBDA_PTR 0x40e -
kernel/arch/ia32/include/boot/memmap.h
r7c682dd1 rd99c1d2 61 61 #ifndef __ASM__ 62 62 63 #include < arch/types.h>63 #include <typedefs.h> 64 64 65 65 typedef struct { -
kernel/arch/ia32/include/context.h
r7c682dd1 rd99c1d2 37 37 38 38 #ifdef KERNEL 39 #include <arch/types.h> 39 40 #include <typedefs.h> 40 41 41 42 #define STACK_ITEM_SIZE 4 -
kernel/arch/ia32/include/cpuid.h
r7c682dd1 rd99c1d2 43 43 #ifndef __ASM__ 44 44 45 #include < arch/types.h>45 #include <typedefs.h> 46 46 47 47 typedef struct { -
kernel/arch/ia32/include/drivers/i8254.h
r7c682dd1 rd99c1d2 36 36 #define KERN_ia32_I8254_H_ 37 37 38 #include <arch/types.h>39 40 38 extern void i8254_init(void); 41 39 extern void i8254_calibrate_delay_loop(void); -
kernel/arch/ia32/include/drivers/i8259.h
r7c682dd1 rd99c1d2 36 36 #define KERN_ia32_I8259_H_ 37 37 38 #include < arch/types.h>38 #include <typedefs.h> 39 39 #include <arch/interrupt.h> 40 40 -
kernel/arch/ia32/include/drivers/vesa.h
r7c682dd1 rd99c1d2 36 36 #define KERN_ia32_VESA_H_ 37 37 38 #include < arch/types.h>38 #include <typedefs.h> 39 39 40 40 extern bool vesa_init(void); -
kernel/arch/ia32/include/faddr.h
r7c682dd1 rd99c1d2 27 27 */ 28 28 29 /** @addtogroup ia32 29 /** @addtogroup ia32 30 30 * @{ 31 31 */ … … 36 36 #define KERN_ia32_FADDR_H_ 37 37 38 #include < arch/types.h>38 #include <typedefs.h> 39 39 40 #define FADDR(fptr) ((uintptr_t) (fptr))40 #define FADDR(fptr) ((uintptr_t) (fptr)) 41 41 42 42 #endif -
kernel/arch/ia32/include/fpu_context.h
r7c682dd1 rd99c1d2 36 36 #define KERN_ia32_FPU_CONTEXT_H_ 37 37 38 #include < arch/types.h>38 #include <typedefs.h> 39 39 40 40 #define FPU_CONTEXT_ALIGN 16 -
kernel/arch/ia32/include/interrupt.h
r7c682dd1 rd99c1d2 36 36 #define KERN_ia32_INTERRUPT_H_ 37 37 38 #include < arch/types.h>38 #include <typedefs.h> 39 39 #include <arch/pm.h> 40 40 -
kernel/arch/ia32/include/mm/asid.h
r7c682dd1 rd99c1d2 43 43 #define KERN_ia32_ASID_H_ 44 44 45 #include < arch/types.h>45 #include <typedefs.h> 46 46 47 47 typedef int32_t asid_t; -
kernel/arch/ia32/include/mm/frame.h
r7c682dd1 rd99c1d2 42 42 #ifndef __ASM__ 43 43 44 #include < arch/types.h>44 #include <typedefs.h> 45 45 46 46 extern uintptr_t last_frame; -
kernel/arch/ia32/include/mm/page.h
r7c682dd1 rd99c1d2 127 127 #include <mm/mm.h> 128 128 #include <arch/interrupt.h> 129 #include <arch/types.h>130 129 #include <typedefs.h> 131 130 -
kernel/arch/ia32/include/pm.h
r7c682dd1 rd99c1d2 80 80 #ifndef __ASM__ 81 81 82 #include < arch/types.h>82 #include <typedefs.h> 83 83 #include <arch/context.h> 84 84 -
kernel/arch/ia32/include/proc/task.h
r7c682dd1 rd99c1d2 36 36 #define KERN_ia32_TASK_H_ 37 37 38 #include < arch/types.h>38 #include <typedefs.h> 39 39 #include <adt/bitmap.h> 40 40 -
kernel/arch/ia32/include/proc/thread.h
r7c682dd1 rd99c1d2 36 36 #define KERN_ia32_THREAD_H_ 37 37 38 #include < arch/types.h>38 #include <typedefs.h> 39 39 40 40 typedef struct { … … 42 42 } thread_arch_t; 43 43 44 #define thr_constructor_arch(t )45 #define thr_destructor_arch(t )44 #define thr_constructor_arch(thr) 45 #define thr_destructor_arch(thr) 46 46 47 47 #endif -
kernel/arch/ia32/include/smp/apic.h
r7c682dd1 rd99c1d2 36 36 #define KERN_ia32_APIC_H_ 37 37 38 #include < arch/types.h>38 #include <typedefs.h> 39 39 #include <cpu.h> 40 40 -
kernel/arch/ia32/include/smp/mps.h
r7c682dd1 rd99c1d2 36 36 #define KERN_ia32_MPS_H_ 37 37 38 #include < arch/types.h>38 #include <typedefs.h> 39 39 #include <synch/waitq.h> 40 40 #include <config.h> -
kernel/arch/ia32/include/smp/smp.h
r7c682dd1 rd99c1d2 36 36 #define KERN_ia32_SMP_H_ 37 37 38 #include < arch/types.h>38 #include <typedefs.h> 39 39 40 40 /** SMP config opertaions interface. */ -
kernel/arch/ia32/include/types.h
r7c682dd1 rd99c1d2 36 36 #define KERN_ia32_TYPES_H_ 37 37 38 #include <arch/common.h>39 40 38 typedef uint32_t size_t; 41 39 … … 52 50 } fncptr_t; 53 51 54 #define PRIp "x" /**< Format for uintptr_t. */55 #define PRIs "u" /**< Format for size_t. */52 #define PRIp "x" /**< Format for uintptr_t. */ 53 #define PRIs "u" /**< Format for size_t. */ 56 54 57 #define PRId8 "d" /**< Format for int8_t. */58 #define PRId16 "d" /**< Format for int16_t. */59 #define PRId32 "d" /**< Format for int32_t. */60 #define PRId64 "lld" /**< Format for int64_t. */61 #define PRIdn "d" /**< Format for native_t. */55 #define PRId8 "d" /**< Format for int8_t. */ 56 #define PRId16 "d" /**< Format for int16_t. */ 57 #define PRId32 "d" /**< Format for int32_t. */ 58 #define PRId64 "lld" /**< Format for int64_t. */ 59 #define PRIdn "d" /**< Format for native_t. */ 62 60 63 #define PRIu8 "u" /**< Format for uint8_t. */64 #define PRIu16 "u" /**< Format for uint16_t. */65 #define PRIu32 "u" /**< Format for uint32_t. */66 #define PRIu64 "llu" /**< Format for uint64_t. */67 #define PRIun "u" /**< Format for unative_t. */61 #define PRIu8 "u" /**< Format for uint8_t. */ 62 #define PRIu16 "u" /**< Format for uint16_t. */ 63 #define PRIu32 "u" /**< Format for uint32_t. */ 64 #define PRIu64 "llu" /**< Format for uint64_t. */ 65 #define PRIun "u" /**< Format for unative_t. */ 68 66 69 #define PRIx8 "x" /**< Format for hexadecimal (u)int8_t. */70 #define PRIx16 "x" /**< Format for hexadecimal (u)int16_t. */71 #define PRIx32 "x" /**< Format for hexadecimal (u)uint32_t. */72 #define PRIx64 "llx" /**< Format for hexadecimal (u)int64_t. */73 #define PRIxn "x" /**< Format for hexadecimal (u)native_t. */67 #define PRIx8 "x" /**< Format for hexadecimal (u)int8_t. */ 68 #define PRIx16 "x" /**< Format for hexadecimal (u)int16_t. */ 69 #define PRIx32 "x" /**< Format for hexadecimal (u)uint32_t. */ 70 #define PRIx64 "llx" /**< Format for hexadecimal (u)int64_t. */ 71 #define PRIxn "x" /**< Format for hexadecimal (u)native_t. */ 74 72 75 73 #endif
Note:
See TracChangeset
for help on using the changeset viewer.
