Changeset 1787e527 in mainline for boot/arch/sparc64/loader/asm.h
- Timestamp:
- 2009-11-16T21:22:54Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5ebdf94
- Parents:
- fcbd1be (diff), 9c70ed6 (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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/sparc64/loader/asm.h
rfcbd1be r1787e527 34 34 #include "main.h" 35 35 36 #define PAGE_WIDTH 37 #define PAGE_SIZE 36 #define PAGE_WIDTH 14 37 #define PAGE_SIZE (1 << PAGE_WIDTH) 38 38 39 #define memcpy(dst, src, cnt) __builtin_memcpy((dst), (src), (cnt))39 #define BALLOC_MAX_SIZE (128 * 1024) 40 40 41 41 extern void halt(void); 42 42 extern void jump_to_kernel(void *entry, uint64_t cfg, bootinfo_t *bootinfo, 43 unsigned int bootinfo_size) __attribute__((noreturn));43 unsigned int bootinfo_size, uint8_t subarchitecture) __attribute__((noreturn)); 44 44 45 45 #endif
Note:
See TracChangeset
for help on using the changeset viewer.