make-fd-set
Name
make-fd-set -- Create a file descriptor set for use by fd-select.
Type: function
Synopsis
make-fd-set
( reads writes exceptions, set);
Arguments
- reads
An instance of <list>
- writes
An instance of <list>
- exceptions
An instance of <list>
Return Values
- set
An instance of <fd-select-set>
Description
Constructs a file descriptor set (which is really made up of three sets,
corresponding to watching for readability, writability, and exceptions).
The resulting set can be used in the fd-select function.