diff options
author | Adhemerval Zanella Netto <adhemerval.zanella@linaro.org> | 2023-08-24 13:42:14 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2023-09-05 10:15:48 -0300 |
commit | b56f7fe79e66387fd66009ab335ec61cab71d2ed (patch) | |
tree | a516c62d0ef1c23315869ad9522aadcf5079cbdd /sysdeps/unix/sysv/linux/arm/sysdep.h | |
parent | 4be913652ca115160bae1daf560170ef8b112ccb (diff) | |
download | glibc-b56f7fe79e66387fd66009ab335ec61cab71d2ed.tar glibc-b56f7fe79e66387fd66009ab335ec61cab71d2ed.tar.gz glibc-b56f7fe79e66387fd66009ab335ec61cab71d2ed.tar.bz2 glibc-b56f7fe79e66387fd66009ab335ec61cab71d2ed.zip |
arm: Add the clone3 wrapper
It follows the internal signature:
extern int clone3 (struct clone_args *__cl_args, size_t __size,
int (*__func) (void *__arg), void *__arg);
Checked on arm-linux-gnueabihf.
Diffstat (limited to 'sysdeps/unix/sysv/linux/arm/sysdep.h')
-rw-r--r-- | sysdeps/unix/sysv/linux/arm/sysdep.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sysdeps/unix/sysv/linux/arm/sysdep.h b/sysdeps/unix/sysv/linux/arm/sysdep.h index 2f321881c8..57fc5f16bd 100644 --- a/sysdeps/unix/sysv/linux/arm/sysdep.h +++ b/sysdeps/unix/sysv/linux/arm/sysdep.h @@ -362,6 +362,7 @@ __local_syscall_error: \ #define HAVE_CLOCK_GETTIME_VSYSCALL "__vdso_clock_gettime" #define HAVE_CLOCK_GETTIME64_VSYSCALL "__vdso_clock_gettime64" #define HAVE_GETTIMEOFDAY_VSYSCALL "__vdso_gettimeofday" +#define HAVE_CLONE3_WRAPPER 1 #define LOAD_ARGS_0() #define ASM_ARGS_0 |