diff options
| author | David Turner <digit@google.com> | 2010-01-25 14:30:17 -0800 |
|---|---|---|
| committer | Android (Google) Code Review <android-gerrit@google.com> | 2010-01-25 14:30:17 -0800 |
| commit | f597049b40b9b560746d2ae3537beea977917b3f (patch) | |
| tree | 0a6f7601933da6519c929b16dd4386e255d12ad1 /libc/include/sys | |
| parent | 90f82e5868de5a30d4842951b80be0c8a9cedc6d (diff) | |
| parent | 97cf7f3394780d524038fc083e2c134031b54728 (diff) | |
| download | bionic-f597049b40b9b560746d2ae3537beea977917b3f.zip bionic-f597049b40b9b560746d2ae3537beea977917b3f.tar.gz bionic-f597049b40b9b560746d2ae3537beea977917b3f.tar.bz2 | |
Merge "Implement clone() C library function properly."
Diffstat (limited to 'libc/include/sys')
| -rw-r--r-- | libc/include/sys/linux-unistd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/include/sys/linux-unistd.h b/libc/include/sys/linux-unistd.h index 12f7704..9a151d2 100644 --- a/libc/include/sys/linux-unistd.h +++ b/libc/include/sys/linux-unistd.h @@ -10,7 +10,7 @@ void _exit_thread (int); pid_t __fork (void); pid_t _waitpid (pid_t, int*, int, struct rusage*); int waitid (int, pid_t, struct siginfo_t*, int,void*); -pid_t __clone (int (*fn)(void*), void *child_stack, int flags, void *arg); +pid_t __sys_clone (int, void*, int*, void*, int*); int execve (const char*, char* const*, char* const*); int setuid (uid_t); uid_t getuid (void); |
