You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
527 B
Groff

.TH ndelay_off 3
.SH NAME
ndelay_off \- put file descriptor in non-blocking mode
.SH SYNTAX
.B #include <libowfat/ndelay.h>
extern int \fBndelay_off\fP(int \fIfd\fR);
.SH DESCRIPTION
ndelay_off puts a file descriptor in blocking mode. Reading from and
writing to blocking network sockets, FIFOs or device files will possibly
not return immediately but wait on more input or buffer space for
output.
If an error occurred, ndelay_off will return nonzero and set \fIerrno\fR
accordingly.
.SH "SEE ALSO"
fcntl(2), ndelay_on(3)