Changeset 7f1c620 in mainline for arch/mips32/include/asm.h
- Timestamp:
- 2006-07-04T17:17:56Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0ffa3ef5
- Parents:
- 991779c5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/mips32/include/asm.h
r991779c5 r7f1c620 53 53 * The stack must start on page boundary. 54 54 */ 55 static inline __addressget_stack_base(void)55 static inline uintptr_t get_stack_base(void) 56 56 { 57 __addressv;57 uintptr_t v; 58 58 59 59 __asm__ volatile ("and %0, $29, %1\n" : "=r" (v) : "r" (~(STACK_SIZE-1))); … … 63 63 64 64 extern void cpu_halt(void); 65 extern void asm_delay_loop( __u32t);66 extern void userspace_asm( __address ustack, __addressuspace_uarg,67 __addressentry);65 extern void asm_delay_loop(uint32_t t); 66 extern void userspace_asm(uintptr_t ustack, uintptr_t uspace_uarg, 67 uintptr_t entry); 68 68 69 69 #endif
Note:
See TracChangeset
for help on using the changeset viewer.