diff options
author | Keith M Wesolowski <wesolows@foobazco.org> | 2013-05-13 17:47:27 +0000 |
---|---|---|
committer | Keith M Wesolowski <wesolows@foobazco.org> | 2013-05-13 21:34:54 +0000 |
commit | 0be28f1f11d5b628dc91b2269f3fa5308d7f1da7 (patch) | |
tree | 5a6a33c29c185e13aff10a85cd1a7f14f3a3ad0c /usr/src/man/man3socket/socket.3socket | |
parent | 0910d46ce3f25e856d6556fc8436bc2875d2adac (diff) | |
download | illumos-joyent-0be28f1f11d5b628dc91b2269f3fa5308d7f1da7.tar.gz |
OS-2220 SOCK_NONBLOCK is incomplete, breaks node20130515release-20130515
Diffstat (limited to 'usr/src/man/man3socket/socket.3socket')
-rw-r--r-- | usr/src/man/man3socket/socket.3socket | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/usr/src/man/man3socket/socket.3socket b/usr/src/man/man3socket/socket.3socket index be280b082e..74c2acbc06 100644 --- a/usr/src/man/man3socket/socket.3socket +++ b/usr/src/man/man3socket/socket.3socket @@ -100,6 +100,28 @@ is similar in purpose to the \fBO_CLOEXEC\fR flag to \fBopen\fR(2). .RE .sp +.ne 2 +.na +\fB\fBSOCK_NDELAY\fR\fR +.ad +.RS 12n +Creates the socket with the \fBO_NDELAY\fR flag set, causing the socket to +provide nonblocking semantics as described for \fBO_NDELAY\fR in \fBopen\fR(2). +\fBSOCK_NONBLOCK\fR should normally be used in preference to \fBSOCK_NDELAY\fR, +and takes precedence if both are set. See \fBopen\fR(2) for further details. +.RE + +.sp +.ne 2 +.na +\fB\fBSOCK_NONBLOCK\fR\fR +.ad +.RS 12n +Creates the socket with the \fBO_NONBLOCK\fR flag set, causing the socket to +provide nonblocking semantics as described for \fBO_NONBLOCK\fR in \fBopen\fR(2). +.RE + +.sp .LP There must be an entry in the \fBnetconfig\fR(4) file for at least each protocol family and type required. If a non-zero protocol has been specified @@ -264,6 +286,15 @@ The protocol type is not supported by the address family. The socket type is not supported by the protocol. .RE +.sp +.ne 2 +.na +\fB\fBEINVAL\fR\fR +.ad +.RS 19n +One or more of the specified flags is not supported. +.RE + .SH ATTRIBUTES .sp .LP |