123456789101112131415161718192021222324252627282930313233343536 |
- #include <sys/resource.h>
- #include <sysdep.h>
- #if defined(__NR_prlimit64)
- int
- prlimit64 (__pid_t pid, enum __rlimit_resource resource,
- const struct rlimit64 *new_rlimit, struct rlimit64 *old_rlimit)
- {
- return INLINE_SYSCALL (prlimit64, 4, pid, resource, new_rlimit,
- old_rlimit);
- }
- # if __WORDSIZE == 64 || defined (__USE_FILE_OFFSET64)
- strong_alias_untyped(prlimit64, prlimit)
- # endif
- #endif
|