const INVALID_FD: RawFd = -1;
Available on Linux or Android only.
Expand description
Invalid file descriptor.
Valid file descriptors are guaranteed to be positive numbers (see open()
manpage)
while negative values are used to indicate errors.
Thus -1 will never be overlap with a valid open file.