diff options
author | David 'Digit' Turner <digit@google.com> | 2010-01-22 18:59:05 -0800 |
---|---|---|
committer | David 'Digit' Turner <digit@google.com> | 2010-01-25 11:18:30 -0800 |
commit | 97cf7f3394780d524038fc083e2c134031b54728 (patch) | |
tree | 40b61956bbe4d28babe839c3be40e9f114810e5f /libc/Android.mk | |
parent | 1a2917ca954f575cc9698c99e54bd93087793c8f (diff) | |
download | bionic-97cf7f3394780d524038fc083e2c134031b54728.zip bionic-97cf7f3394780d524038fc083e2c134031b54728.tar.gz bionic-97cf7f3394780d524038fc083e2c134031b54728.tar.bz2 |
Implement clone() C library function properly.
Only provide an implementation for ARM at the moment, since
it requires specific assembly fragments (the standard syscall
stubs cannot be used because the child returns in a different
stack).
Diffstat (limited to 'libc/Android.mk')
-rw-r--r-- | libc/Android.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libc/Android.mk b/libc/Android.mk index c32cc30..e820b60 100644 --- a/libc/Android.mk +++ b/libc/Android.mk @@ -289,6 +289,7 @@ libc_common_src_files := \ ifeq ($(TARGET_ARCH),arm) libc_common_src_files += \ bionic/eabi.c \ + bionic/bionic_clone.c \ arch-arm/bionic/__get_pc.S \ arch-arm/bionic/__get_sp.S \ arch-arm/bionic/_exit_with_stack_teardown.S \ |