effaa7824d
Some MIPS kernels do not correctly restart interrupted system calls that have been invoked using the indirect syscall (NR_syscall). The simplest workaround is to handle the indirection in userland and then call the required system call directly. Change-Id: I8385399621529db9a52b463c96925f6decaaca30
23 lines
726 B
Makefile
23 lines
726 B
Makefile
_LIBC_ARCH_COMMON_SRC_FILES := \
|
|
arch-mips/bionic/bzero.S \
|
|
arch-mips/bionic/cacheflush.cpp \
|
|
arch-mips/bionic/clone.S \
|
|
arch-mips/bionic/_exit_with_stack_teardown.S \
|
|
arch-mips/bionic/futex_mips.S \
|
|
arch-mips/bionic/__get_sp.S \
|
|
arch-mips/bionic/memcmp16.S \
|
|
arch-mips/bionic/memmove.c \
|
|
arch-mips/bionic/_setjmp.S \
|
|
arch-mips/bionic/setjmp.S \
|
|
arch-mips/bionic/__set_tls.c \
|
|
arch-mips/bionic/sigsetjmp.S \
|
|
arch-mips/bionic/syscall.S \
|
|
arch-mips/bionic/vfork.S \
|
|
arch-mips/string/memcpy.S \
|
|
arch-mips/string/memset.S \
|
|
arch-mips/string/mips_strlen.c \
|
|
|
|
_LIBC_ARCH_STATIC_SRC_FILES := \
|
|
bionic/dl_iterate_phdr_static.c \
|
|
|
|
_LIBC_ARCH_DYNAMIC_SRC_FILES :=
|