repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
apply hidden visibility to sigreturn code fragments
[musl.git]
/
src
/
legacy
/
getdtablesize.c
blob
b30c1933a272d13b3d7918afd053dcd328d700c2
1
#define _GNU_SOURCE
2
#include <unistd.h>
3
#include <limits.h>
4
#include <sys/resource.h>
5
6
int
getdtablesize
(
void
)
7
{
8
struct
rlimit rl
;
9
getrlimit
(
RLIMIT_NOFILE
, &
rl
);
10
return
rl
.
rlim_cur
<
INT_MAX
?
rl
.
rlim_cur
:
INT_MAX
;
11
}