1 /* getrlimit Author: Erik van der Kouwe
2 * query resource consumtion limits 4 December 2009
4 * Based on these specifications:
5 * http://www.opengroup.org/onlinepubs/007908775/xsh/getdtablesize.html
6 * http://www.opengroup.org/onlinepubs/007908775/xsh/getrlimit.html
10 #include "namespace.h"
14 #include <sys/resource.h>
17 int getrlimit(int resource
, struct rlimit
*rlp
)
24 /* no core currently produced */
33 /* no limit enforced (however architectural limits
36 limit
= RLIM_INFINITY
;
49 rlp
->rlim_cur
= limit
;
50 rlp
->rlim_max
= limit
;