36d6188f8c
The kernel now maintains the pthread_internal_t::tid field for us, and __clone was only used in one place so let's inline it so we don't have to leave such a dangerous function lying around. Also rename files to match their content and remove some useless #includes. Change-Id: I24299fb4a940e394de75f864ee36fdabbd9438f9
18 lines
586 B
Makefile
18 lines
586 B
Makefile
_LIBC_ARCH_COMMON_SRC_FILES := \
|
|
arch-x86_64/bionic/__bionic_clone.S \
|
|
arch-x86_64/bionic/_exit_with_stack_teardown.S \
|
|
arch-x86_64/bionic/futex_x86_64.S \
|
|
arch-x86_64/bionic/__get_sp.S \
|
|
arch-x86_64/bionic/__rt_sigreturn.S \
|
|
arch-x86_64/bionic/_setjmp.S \
|
|
arch-x86_64/bionic/setjmp.S \
|
|
arch-x86_64/bionic/__set_tls.c \
|
|
arch-x86_64/bionic/sigsetjmp.S \
|
|
arch-x86_64/bionic/syscall.S \
|
|
arch-x86_64/bionic/vfork.S \
|
|
string/memcmp16.c \
|
|
|
|
_LIBC_ARCH_STATIC_SRC_FILES := \
|
|
bionic/dl_iterate_phdr_static.c \
|
|
|
|
_LIBC_ARCH_DYNAMIC_SRC_FILES :=
|