summaryrefslogtreecommitdiff
path: root/libpthread
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-11-15 01:36:41 +0000
committerMike Frysinger <vapier@gentoo.org>2005-11-15 01:36:41 +0000
commit87601389ad2fbd9e0655ae0a391bf7edfdb771c2 (patch)
tree0637e5f92c0a00e0f694003fa61cdaf52d9a10fd /libpthread
parentafa5bf6803f3716140291bc9f9c65fcada5862c4 (diff)
use clone() instead of __clone()
Diffstat (limited to 'libpthread')
-rw-r--r--libpthread/linuxthreads/manager.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libpthread/linuxthreads/manager.c b/libpthread/linuxthreads/manager.c
index a00c9b13e..d2e3d5c22 100644
--- a/libpthread/linuxthreads/manager.c
+++ b/libpthread/linuxthreads/manager.c
@@ -648,7 +648,7 @@ static int pthread_handle_create(pthread_t *thread, const pthread_attr_t *attr,
CLONE_VM | CLONE_FS | CLONE_FILES | CLONE_SIGHAND |
__pthread_sig_cancel, new_thread);
#elif _STACK_GROWS_UP
- pid = __clone(pthread_start_thread_event, (void *) new_thread_bottom,
+ pid = clone(pthread_start_thread_event, (void *) new_thread_bottom,
CLONE_VM | CLONE_FS | CLONE_FILES | CLONE_SIGHAND |
__pthread_sig_cancel, new_thread);
#else
@@ -690,7 +690,7 @@ static int pthread_handle_create(pthread_t *thread, const pthread_attr_t *attr,
CLONE_VM | CLONE_FS | CLONE_FILES | CLONE_SIGHAND |
__pthread_sig_cancel, new_thread);
#elif _STACK_GROWS_UP
- pid = __clone(pthread_start_thread, (void *) new_thread_bottom,
+ pid = clone(pthread_start_thread, (void *) new_thread_bottom,
CLONE_VM | CLONE_FS | CLONE_FILES | CLONE_SIGHAND |
__pthread_sig_cancel, new_thread);
#else