Changeset 5a5269d in mainline for kernel/arch/mips32/src/mips32.c
- Timestamp:
- 2019-07-02T12:03:55Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 98c4c16
- Parents:
- aca97582
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2019-07-02 12:03:55)
- git-committer:
- GitHub <noreply@…> (2019-07-02 12:03:55)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/mips32/src/mips32.c
raca97582 r5a5269d 167 167 cp0_status_write(cp0_status_read() | (cp0_status_exl_exception_bit | 168 168 cp0_status_um_bit | cp0_status_ie_enabled_bit)); 169 cp0_epc_write( (uintptr_t)kernel_uarg->uspace_entry);170 userspace_asm( ((uintptr_t)kernel_uarg->uspace_stack +171 kernel_uarg->uspace_stack_size ),172 (uintptr_t)kernel_uarg->uspace_uarg,173 (uintptr_t)kernel_uarg->uspace_entry);169 cp0_epc_write(kernel_uarg->uspace_entry); 170 userspace_asm(kernel_uarg->uspace_stack + 171 kernel_uarg->uspace_stack_size, 172 kernel_uarg->uspace_uarg, 173 kernel_uarg->uspace_entry); 174 174 175 175 while (true)
Note:
See TracChangeset
for help on using the changeset viewer.