* F_block (with error bit) if the action would block and non-blocking is set on the stream.
* F_buffer (with error bit) if the buffer is invalid.
* F_deadlock (with error bit) if operation would cause a deadlock.
+ * F_device_not (with error bit) if the device does not exist.
* F_directory_not (with error bit) if F_NOTIFY was specified and file.id is not a directory.
* F_file_descriptor_max (with error bit) if max file descriptors is reached.
* F_file_descriptor_not (with error bit) if file descriptor is invalid.
if (errno == EINVAL) return F_status_set_error(F_parameter);
if (errno == EMFILE) return F_status_set_error(F_file_descriptor_max);
if (errno == ENFILE) return F_status_set_error(F_file_open_max);
- if (errno == ENODEV) return F_status_set_error(F_device);
+ if (errno == ENODEV) return F_status_set_error(F_device_not);
if (errno == ENOMEM) return F_status_set_error(F_memory_not);
return F_status_set_error(F_failure);
* @return
* F_okay on success but no signal found.
*
- * F_device (with error bit) if could not mount the internal inode device.
+ * F_device_not (with error bit) if could not mount the internal inode device.
* F_file_descriptor_max (with error bit) if max file descriptors is reached.
* F_memory_not (with error bit) if out of memory.
* F_parameter (with error bit) if a parameter is invalid.
F_parameter,
F_file_descriptor_max,
F_file_open_max,
- F_device,
+ F_device_not,
F_memory_not,
F_failure,
};