v / vlib / picoev / constants_default.c.v
6 lines · 5 sloc · 252 bytes · d5aa37d8b770ae0384abb78d4c2590548e4da830
Raw
1module 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 :-| .
6pub const max_fds = 1024
7