Changeset c0699467 in mainline for kernel/arch/amd64
- Timestamp:
- 2011-08-09T18:08:23Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b538ca5c
- Parents:
- 3666d386
- Location:
- kernel/arch/amd64
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/amd64/include/context.h
r3666d386 rc0699467 36 36 #define KERN_amd64_CONTEXT_H_ 37 37 38 #ifdef KERNEL39 40 38 #include <typedefs.h> 41 39 … … 52 50 (c)->rbp = 0; \ 53 51 } while (0) 54 55 #endif /* KERNEL */56 52 57 53 /* We include only registers that must be preserved -
kernel/arch/amd64/include/istate.h
r3666d386 rc0699467 36 36 #define KERN_amd64_ISTATE_H_ 37 37 38 #ifdef KERNEL39 40 #include <typedefs.h>41 38 #include <trace.h> 42 43 #else /* KERNEL */44 45 #include <sys/types.h>46 47 #define NO_TRACE48 49 #endif /* KERNEL */50 39 51 40 /** This is passed to interrupt handlers */ -
kernel/arch/amd64/include/mm/frame.h
r3666d386 rc0699467 39 39 #define FRAME_SIZE (1 << FRAME_WIDTH) 40 40 41 #ifdef KERNEL42 41 #ifndef __ASM__ 43 42 … … 49 48 50 49 #endif /* __ASM__ */ 51 #endif /* KERNEL */52 50 53 51 #endif -
kernel/arch/amd64/include/mm/page.h
r3666d386 rc0699467 50 50 #define PAGE_WIDTH FRAME_WIDTH 51 51 #define PAGE_SIZE FRAME_SIZE 52 53 #ifdef KERNEL54 52 55 53 #ifndef __ASM__ … … 231 229 #endif /* __ASM__ */ 232 230 233 #endif /* KERNEL */234 235 231 #endif 236 232 -
kernel/arch/amd64/src/userspace.c
r3666d386 rc0699467 38 38 #include <typedefs.h> 39 39 #include <arch.h> 40 #include < proc/uarg.h>40 #include <abi/proc/uarg.h> 41 41 #include <mm/as.h> 42 43 42 44 43 /** Enter userspace
Note:
See TracChangeset
for help on using the changeset viewer.