1 /* getdtablesize, 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
11 #include <sys/resource.h>
14 int getdtablesize(void)
19 int getrlimit(int resource
, struct rlimit
*rlp
)
26 /* no core currently produced */
35 /* no limit enforced (however architectural limits
38 limit
= RLIM_INFINITY
;
51 rlp
->rlim_cur
= limit
;
52 rlp
->rlim_max
= limit
;