Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v
/
vlib
/
picoev
/
constants_default.c.v
6
lines
·
5
sloc
·
252 bytes
·
d5aa37d8b770ae0384abb78d4c2590548e4da830
Raw
1
module
picoev
2
3
// max_fds is the maximum number of file descriptors that can be managed.
4
// Many sizes depend on it, and some internal arrays are also iterated based on it,
5
// so increasing it a lot can slow down looping :-| .
6
pub
const
max_fds = 1024
7