Sign in
mojo
/
mojo-tools
/
83365b19d08baa9ba3f254866a59b01eba496f4f
/
.
/
fusl
/
src
/
legacy
/
getdtablesize.c
blob: 682da6d067583f4382d9b1f2accc8115e66af3ab [
file
]
#define
_GNU_SOURCE
#include
<unistd.h>
#include
<limits.h>
#include
<sys/resource.h>
int
getdtablesize
(
void
)
{
struct
rlimit rl
;
getrlimit
(
RLIMIT_NOFILE
,
&
rl
);
return
rl
.
rlim_max
<
INT_MAX
?
rl
.
rlim_max
:
INT_MAX
;
}