aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/unix/sysv/linux/prlimit.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/unix/sysv/linux/prlimit.c')
-rw-r--r--sysdeps/unix/sysv/linux/prlimit.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/sysdeps/unix/sysv/linux/prlimit.c b/sysdeps/unix/sysv/linux/prlimit.c
index c12de52693..d4e0b73bce 100644
--- a/sysdeps/unix/sysv/linux/prlimit.c
+++ b/sysdeps/unix/sysv/linux/prlimit.c
@@ -18,6 +18,10 @@
#include <sys/resource.h>
#include <sysdep.h>
+/* For ports that support the 64-bit ABI we do not need to define prlimit
+ and instead prlimit aliases to prlimit64. See the prlimit64
+ implementation. */
+#if !__RLIM_T_MATCHES_RLIM64_T
int
prlimit (__pid_t pid, enum __rlimit_resource resource,
const struct rlimit *new_rlimit, struct rlimit *old_rlimit)
@@ -73,3 +77,4 @@ prlimit (__pid_t pid, enum __rlimit_resource resource,
return res;
}
+#endif /* __RLIM_T_MATCHES_RLIM64_T */