Changeset d99c1d2 in mainline for kernel/arch/amd64/include
- 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/arch/amd64/include
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/amd64/include/asm.h
r7c682dd1 rd99c1d2 37 37 38 38 #include <config.h> 39 #include <arch/types.h>40 39 #include <typedefs.h> 41 40 -
kernel/arch/amd64/include/atomic.h
r7c682dd1 rd99c1d2 36 36 #define KERN_amd64_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/amd64/include/context.h
r7c682dd1 rd99c1d2 38 38 #ifdef KERNEL 39 39 40 #include < arch/types.h>40 #include <typedefs.h> 41 41 42 42 /* According to ABI the stack MUST be aligned on -
kernel/arch/amd64/include/cpuid.h
r7c682dd1 rd99c1d2 48 48 #ifndef __ASM__ 49 49 50 #include < arch/types.h>50 #include <typedefs.h> 51 51 52 52 typedef struct { -
kernel/arch/amd64/include/debugger.h
r7c682dd1 rd99c1d2 36 36 #define KERN_amd64_DEBUGGER_H_ 37 37 38 #include < arch/types.h>38 #include <typedefs.h> 39 39 40 40 #define BKPOINTS_MAX 4 -
kernel/arch/amd64/include/faddr.h
r7c682dd1 rd99c1d2 36 36 #define KERN_amd64_FADDR_H_ 37 37 38 #include < arch/types.h>38 #include <typedefs.h> 39 39 40 40 #define FADDR(fptr) ((uintptr_t) (fptr)) -
kernel/arch/amd64/include/interrupt.h
r7c682dd1 rd99c1d2 36 36 #define KERN_amd64_INTERRUPT_H_ 37 37 38 #include < arch/types.h>38 #include <typedefs.h> 39 39 #include <arch/pm.h> 40 40 -
kernel/arch/amd64/include/mm/frame.h
r7c682dd1 rd99c1d2 37 37 38 38 #ifndef __ASM__ 39 #include < arch/types.h>39 #include <typedefs.h> 40 40 #endif /* __ASM__ */ 41 41 -
kernel/arch/amd64/include/mm/page.h
r7c682dd1 rd99c1d2 57 57 #ifndef __ASM__ 58 58 # include <mm/mm.h> 59 # include < arch/types.h>59 # include <typedefs.h> 60 60 # include <arch/interrupt.h> 61 61 -
kernel/arch/amd64/include/pm.h
r7c682dd1 rd99c1d2 37 37 38 38 #ifndef __ASM__ 39 #include < arch/types.h>39 #include <typedefs.h> 40 40 #include <arch/context.h> 41 41 #endif -
kernel/arch/amd64/include/proc/task.h
r7c682dd1 rd99c1d2 36 36 #define KERN_amd64_TASK_H_ 37 37 38 #include < arch/types.h>38 #include <typedefs.h> 39 39 #include <adt/bitmap.h> 40 40 -
kernel/arch/amd64/include/types.h
r7c682dd1 rd99c1d2 36 36 #define KERN_amd64_TYPES_H_ 37 37 38 typedef signed char int8_t;39 typedef signed short int16_t;40 typedef signed int int32_t;41 typedef signed long long int64_t;42 43 typedef unsigned char uint8_t;44 typedef unsigned short uint16_t;45 typedef unsigned int uint32_t;46 typedef unsigned long long uint64_t;47 48 38 typedef uint64_t size_t; 49 39 … … 61 51 62 52 /**< Formats for uintptr_t, size_t */ 63 #define PRIp "llx"64 #define PRIs "llu"53 #define PRIp "llx" 54 #define PRIs "llu" 65 55 66 56 /**< Formats for (u)int8_t, (u)int16_t, (u)int32_t, (u)int64_t and (u)native_t */ 67 #define PRId8 "d"68 #define PRId16 "d"69 #define PRId32 "d"70 #define PRId64 "lld"71 #define PRIdn "lld"57 #define PRId8 "d" 58 #define PRId16 "d" 59 #define PRId32 "d" 60 #define PRId64 "lld" 61 #define PRIdn "lld" 72 62 73 #define PRIu8 "u"74 #define PRIu16 "u"75 #define PRIu32 "u"76 #define PRIu64 "llu"77 #define PRIun "llu"63 #define PRIu8 "u" 64 #define PRIu16 "u" 65 #define PRIu32 "u" 66 #define PRIu64 "llu" 67 #define PRIun "llu" 78 68 79 #define PRIx8 "x"80 #define PRIx16 "x"81 #define PRIx32 "x"82 #define PRIx64 "llx"83 #define PRIxn "llx"69 #define PRIx8 "x" 70 #define PRIx16 "x" 71 #define PRIx32 "x" 72 #define PRIx64 "llx" 73 #define PRIxn "llx" 84 74 85 75 #endif
Note:
See TracChangeset
for help on using the changeset viewer.