Changeset e4f8c77 in mainline for uspace/lib/c/arch
- Timestamp:
- 2011-07-13T22:39:18Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e6910c8
- Parents:
- 5974661 (diff), 8ecef91 (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. - Location:
- uspace/lib/c/arch
- Files:
-
- 18 added
- 9 edited
- 4 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/arch/mips32/Makefile.common
r5974661 re4f8c77 27 27 # 28 28 29 GCC_CFLAGS += -mips3 29 GCC_CFLAGS += -mips3 -mabi=32 30 30 31 31 ENDIANESS = LE -
uspace/lib/c/arch/mips32/include/atomic.h
r5974661 re4f8c77 31 31 */ 32 32 /** @file 33 * @ingroup libcmips32 eb33 * @ingroup libcmips32 34 34 */ 35 35 -
uspace/lib/c/arch/mips32/include/fibril.h
r5974661 re4f8c77 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
r5974661 re4f8c77 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
r5974661 re4f8c77 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
r5974661 re4f8c77 31 31 */ 32 32 /** @file 33 * @ingroup libcmips32 eb33 * @ingroup libcmips32 34 34 */ 35 35 -
uspace/lib/c/arch/mips32/src/syscall.c
r5974661 re4f8c77 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
r5974661 re4f8c77 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/mips32eb/Makefile.common
r5974661 re4f8c77 27 27 # 28 28 29 GCC_CFLAGS += -mips3 29 GCC_CFLAGS += -mips3 -mabi=32 30 30 31 31 ENDIANESS = BE -
uspace/lib/c/arch/mips64/Makefile.common
r5974661 re4f8c77 1 1 # 2 2 # Copyright (c) 2005 Martin Decky 3 # Copyright (c) 2007 Jakub Jermar4 3 # All rights reserved. 5 4 # … … 28 27 # 29 28 30 USPACE_PREFIX = ../../../.. 31 BINARY = fhc 29 GCC_CFLAGS += -mips3 -mabi=64 30 AFLAGS = -64 32 31 33 SOURCES = \ 34 fhc.c 32 ENDIANESS = LE 35 33 36 include $(USPACE_PREFIX)/Makefile.common 34 BFD_ARCH = mips:4000 35 BFD_NAME = elf64-tradlittlemips -
uspace/lib/c/arch/mips64/Makefile.inc
r5974661 re4f8c77 1 1 # 2 2 # Copyright (c) 2005 Martin Decky 3 # Copyright (c) 2007 Jakub Jermar4 3 # All rights reserved. 5 4 # … … 28 27 # 29 28 30 USPACE_PREFIX = ../../.. 31 EXTRA_CFLAGS = -Iinclude 32 BINARY = char_ms 29 ARCH_SOURCES = \ 30 arch/$(UARCH)/src/entry.s \ 31 arch/$(UARCH)/src/entryjmp.s \ 32 arch/$(UARCH)/src/thread_entry.s \ 33 arch/$(UARCH)/src/syscall.c \ 34 arch/$(UARCH)/src/fibril.S \ 35 arch/$(UARCH)/src/tls.c \ 36 arch/$(UARCH)/src/stacktrace.c \ 37 arch/$(UARCH)/src/stacktrace_asm.S 33 38 34 SOURCES = \ 35 proto/ps2.c \ 36 char_mouse.c \ 37 chardev.c 38 39 include $(USPACE_PREFIX)/Makefile.common 39 .PRECIOUS: arch/$(UARCH)/src/entry.o -
uspace/lib/c/arch/mips64/include/istate.h
r5974661 re4f8c77 27 27 */ 28 28 29 /** @addtogroup mouse 30 * @brief 29 /** @addtogroup libcmips64 31 30 * @{ 32 31 */ … … 34 33 */ 35 34 36 #ifndef ADBDEV_H_37 #define ADBDEV_H_35 #ifndef LIBC_mips64__ISTATE_H_ 36 #define LIBC_mips64__ISTATE_H_ 38 37 39 #include <sys/types.h> 40 41 extern int adb_dev_init(void); 38 #include <arch/istate.h> 42 39 43 40 #endif 44 41 45 /** 46 * @} 47 */ 48 42 /** @} 43 */ -
uspace/lib/c/arch/mips64/src/stacktrace.c
r5974661 re4f8c77 1 1 /* 2 * Copyright (c) 20 09 Jiri Svoboda3 * Copyright (c) 2010 Lenka Trochtova2 * Copyright (c) 2010 Jakub Jermar 3 * Copyright (c) 2010 Jiri Svoboda 4 4 * All rights reserved. 5 5 * … … 28 28 */ 29 29 30 /** @addtogroup libc 30 /** @addtogroup libcmips64 mips64 31 * @ingroup lc 31 32 * @{ 32 33 */ … … 34 35 */ 35 36 36 #ifndef LIBC_DEVMAN_OBSOLETE_H_ 37 #define LIBC_DEVMAN_OBSOLETE_H_ 37 #include <sys/types.h> 38 #include <bool.h> 39 #include <errno.h> 38 40 39 #include <ipc/devman.h> 40 #include <async.h> 41 #include <bool.h> 41 #include <stacktrace.h> 42 42 43 extern int devman_obsolete_get_phone(devman_interface_t, unsigned int); 44 extern void devman_obsolete_hangup_phone(devman_interface_t); 43 bool stacktrace_fp_valid(stacktrace_t *st, uintptr_t fp) 44 { 45 (void) st; (void) fp; 46 return false; 47 } 45 48 46 extern int devman_obsolete_device_connect(devman_handle_t, unsigned int); 47 extern int devman_obsolete_parent_device_connect(devman_handle_t, unsigned int); 49 int stacktrace_fp_prev(stacktrace_t *st, uintptr_t fp, uintptr_t *prev) 50 { 51 (void) st; (void) fp; (void) prev; 52 return ENOTSUP; 53 } 48 54 49 #endif 55 int stacktrace_ra_get(stacktrace_t *st, uintptr_t fp, uintptr_t *ra) 56 { 57 (void) st; (void) fp; (void) ra; 58 return ENOTSUP; 59 } 50 60 51 61 /** @}
Note:
See TracChangeset
for help on using the changeset viewer.