1 /*  Copyright (C) 2023 uClibc-ng
2  *  An prlimit64() - get/set resource limits Linux specific syscall.
3  *
4  *  This library is free software; you can redistribute it and/or
5  *  modify it under the terms of the GNU Library General Public
6  *  License as published by the Free Software Foundation; either
7  *  version 2 of the License, or (at your option) any later version.
8  *
9  *  This library is distributed in the hope that it will be useful,
10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  *  Library General Public License for more details.
13  *
14  *  You should have received a copy of the GNU Library General Public
15  *  License along with this library; if not, see
16  *  <http://www.gnu.org/licenses/>.
17  */
18 
19 #include <sys/resource.h>
20 #include <sysdep.h>
21 
22 #if defined(__NR_prlimit64)
23 
24 int
prlimit64(__pid_t pid,enum __rlimit_resource resource,const struct rlimit64 * new_rlimit,struct rlimit64 * old_rlimit)25 prlimit64 (__pid_t pid, enum __rlimit_resource resource,
26 	   const struct rlimit64 *new_rlimit, struct rlimit64 *old_rlimit)
27 {
28 	return INLINE_SYSCALL (prlimit64, 4, pid, resource, new_rlimit,
29 			       old_rlimit);
30 }
31 
32 # if __WORDSIZE == 64 || defined (__USE_FILE_OFFSET64)
33 strong_alias_untyped(prlimit64, prlimit)
34 # endif
35 
36 #endif