diff options
author | Chris Metcalf <cmetcalf@tilera.com> | 2014-06-10 13:45:36 -0400 |
---|---|---|
committer | Chris Metcalf <cmetcalf@tilera.com> | 2014-06-10 14:10:17 -0400 |
commit | 2d0fc4dcfcc35cdc3756e548e354488d48e8e1e9 (patch) | |
tree | 2fb242a7c70842a4a502ba2a9ac56db880e15061 /sysdeps/unix/sysv/linux/tile/waitpid.S | |
parent | 0570cfed7f46a6e71175e1e6fc52fa9b3f22e677 (diff) | |
download | glibc-2d0fc4dcfcc35cdc3756e548e354488d48e8e1e9.tar glibc-2d0fc4dcfcc35cdc3756e548e354488d48e8e1e9.tar.gz glibc-2d0fc4dcfcc35cdc3756e548e354488d48e8e1e9.tar.bz2 glibc-2d0fc4dcfcc35cdc3756e548e354488d48e8e1e9.zip |
tile: move sysdeps/unix/sysv/linux/tile nptl files.
Diffstat (limited to 'sysdeps/unix/sysv/linux/tile/waitpid.S')
-rw-r--r-- | sysdeps/unix/sysv/linux/tile/waitpid.S | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/sysdeps/unix/sysv/linux/tile/waitpid.S b/sysdeps/unix/sysv/linux/tile/waitpid.S new file mode 100644 index 0000000000..9aa793e12b --- /dev/null +++ b/sysdeps/unix/sysv/linux/tile/waitpid.S @@ -0,0 +1,20 @@ +/* +extern pid_t __waitpid_nocancel (pid_t, int *, int) attribute_hidden; +*/ +#if !defined NOT_IN_libc || defined IS_IN_libpthread || defined IS_IN_librt + +/* Call __NR_wait4, providing fourth argument (struct rusage *) as NULL. */ +#define PSEUDO_EXTRA move r3, zero; +#include <sysdep-cancel.h> + +PSEUDO (__waitpid, wait4, 3) +ret +PSEUDO_END(__waitpid) + +libc_hidden_def (__waitpid) +weak_alias (__waitpid, waitpid) +libc_hidden_weak (waitpid) +weak_alias (__waitpid, __libc_waitpid) +libc_hidden_weak (__libc_waitpid) + +#endif |