mirror of
https://github.com/vlang/v.git
synced 2025-08-03 17:57:59 -04:00
7 lines
252 B
V
7 lines
252 B
V
module picoev
|
|
|
|
// max_fds is the maximum number of file descriptors that can be managed.
|
|
// Many sizes depend on it, and some internal arrays are also iterated based on it,
|
|
// so increasing it a lot can slow down looping :-| .
|
|
pub const max_fds = 1024
|