Changeset 27ba40f in mainline
- Timestamp:
- 2011-07-01T16:41:27Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f335225
- Parents:
- 5d506860
- Files:
-
- 15 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/mips32/include/cycle.h
r5d506860 r27ba40f 27 27 */ 28 28 29 /** @addtogroup mips 229 /** @addtogroup mips32 30 30 * @{ 31 31 */ -
kernel/arch/mips32/include/debug.h
r5d506860 r27ba40f 34 34 35 35 #ifndef KERN_mips32_DEBUG_H_ 36 #define KERN_mips 23_DEBUG_H_36 #define KERN_mips32_DEBUG_H_ 37 37 38 38 /** Enter the simulator trace mode */ -
kernel/arch/mips32/include/mm/frame.h
r5d506860 r27ba40f 42 42 #ifndef __ASM__ 43 43 44 #include <typedefs.h>45 46 44 extern void frame_arch_init(void); 47 45 extern void physmem_print(void); -
kernel/arch/mips32/include/stack.h
r5d506860 r27ba40f 39 39 #define STACK_ALIGNMENT 8 40 40 41 #define STACK_ARG0 042 #define STACK_ARG1 443 #define STACK_ARG2 844 #define STACK_ARG3 1245 #define STACK_ARG4 1646 #define STACK_ARG5 2047 #define STACK_ARG6 2448 49 41 #endif 50 42 -
kernel/arch/mips32/src/cpu/cpu.c
r5d506860 r27ba40f 37 37 #include <arch.h> 38 38 #include <arch/cp0.h> 39 #include <print.h> 39 #include <print.h> 40 40 41 41 struct data_t { -
kernel/arch/mips32/src/start.S
r5d506860 r27ba40f 222 222 223 223 /* move $k0 pointer to kernel stack */ 224 lui $k0, %hi(supervisor_sp) 225 ori $k0, $k0, %lo(supervisor_sp) 224 la $k0, supervisor_sp 226 225 227 226 /* move $k0 (supervisor_sp) */ -
kernel/generic/include/mm/as.h
r5d506860 r27ba40f 65 65 #include <arch/mm/as.h> 66 66 #include <arch/mm/asid.h> 67 #include <arch/istate.h> 67 68 #include <typedefs.h> 68 69 #include <synch/spinlock.h> -
uspace/lib/c/arch/mips32/include/atomic.h
r5d506860 r27ba40f 31 31 */ 32 32 /** @file 33 * @ingroup libcmips32 eb33 * @ingroup libcmips32 34 34 */ 35 35 -
uspace/lib/c/arch/mips32/include/fibril.h
r5d506860 r27ba40f 27 27 */ 28 28 29 /** @addtogroup libcmips32 29 /** @addtogroup libcmips32 30 30 * @{ 31 31 */ 32 32 /** @file 33 * @ingroup libcmips32 eb33 * @ingroup libcmips32 34 34 */ 35 35 -
uspace/lib/c/arch/mips32/include/thread.h
r5d506860 r27ba40f 27 27 */ 28 28 29 /** @addtogroup libcmips32 29 /** @addtogroup libcmips32 30 30 * @{ 31 31 */ 32 32 /** @file 33 * @ingroup libcmips32 eb33 * @ingroup libcmips32 34 34 */ 35 35 -
uspace/lib/c/arch/mips32/include/tls.h
r5d506860 r27ba40f 27 27 */ 28 28 29 /** @addtogroup libcmips32 29 /** @addtogroup libcmips32 30 30 * @{ 31 31 */ 32 32 /** @file 33 * @ingroup libcmips32 eb33 * @ingroup libcmips32 34 34 */ 35 35 -
uspace/lib/c/arch/mips32/include/types.h
r5d506860 r27ba40f 31 31 */ 32 32 /** @file 33 * @ingroup libcmips32 eb33 * @ingroup libcmips32 34 34 */ 35 35 -
uspace/lib/c/arch/mips32/src/syscall.c
r5d506860 r27ba40f 27 27 */ 28 28 29 29 /** @addtogroup libcmips32 30 30 * @{ 31 31 */ 32 32 /** @file 33 * @ingroup libcmips32 eb33 * @ingroup libcmips32 34 34 */ 35 35 … … 64 64 } 65 65 66 66 /** @} 67 67 */ 68 -
uspace/lib/c/arch/mips32/src/tls.c
r5d506860 r27ba40f 27 27 */ 28 28 29 /** @addtogroup libcmips32 29 /** @addtogroup libcmips32 30 30 * @{ 31 31 */ 32 32 /** @file 33 * @ingroup libcmips32 eb33 * @ingroup libcmips32 34 34 */ 35 35 -
uspace/lib/softfloat/arch/mips32/include/functions.h
r5d506860 r27ba40f 27 27 */ 28 28 29 /** @addtogroup softfloatmips32 mips32 29 /** @addtogroup softfloatmips32 mips32 30 30 * @ingroup sfl 31 31 * @brief softfloat architecture dependent definitions … … 72 72 #endif 73 73 74 75 /** @} 74 /** @} 76 75 */ 77
Note:
See TracChangeset
for help on using the changeset viewer.