summaryrefslogtreecommitdiff
path: root/usr/src/man/man3c/epoll_create.3c
diff options
context:
space:
mode:
authorPeter Tribble <peter.tribble@gmail.com>2019-08-26 14:38:14 +0100
committerPeter Tribble <peter.tribble@gmail.com>2019-08-27 21:04:45 +0100
commitc5806743f70246f7f708e57514b9103a6291d629 (patch)
treea9b2a46d7e707a21b6a9c05e9c6a773e34fa073f /usr/src/man/man3c/epoll_create.3c
parent6ae02400ec7326832d2e19e92b4174ec778b2b9f (diff)
downloadillumos-joyent-c5806743f70246f7f708e57514b9103a6291d629.tar.gz
11622 clean up rarer mandoc lint warnings
Reviewed by: Yuri Pankov <yuri.pankov@nexenta.com> Reviewed by: Toomas Soome <tsoome@me.com> Approved by: Robert Mustacchi <rm@joyent.com>
Diffstat (limited to 'usr/src/man/man3c/epoll_create.3c')
-rw-r--r--usr/src/man/man3c/epoll_create.3c10
1 files changed, 1 insertions, 9 deletions
diff --git a/usr/src/man/man3c/epoll_create.3c b/usr/src/man/man3c/epoll_create.3c
index 83ea81e204..624e0f3a16 100644
--- a/usr/src/man/man3c/epoll_create.3c
+++ b/usr/src/man/man3c/epoll_create.3c
@@ -4,7 +4,7 @@
.\" Common Development and Distribution License ("CDDL"), version 1.0.
.\" You may only use this file in accordance with the terms of version
.\" 1.0 of the CDDL.
-.\"
+.\"
.\" A full copy of the text of the CDDL should have accompanied this
.\" source. A copy of the CDDL is also available via the Internet at
.\" http://www.illumos.org/license/CDDL.
@@ -12,8 +12,6 @@
.SH NAME
epoll_create, epoll_create1 \- create an epoll instance
.SH SYNOPSIS
-
-.LP
.nf
#include <sys/epoll.h>
@@ -26,7 +24,6 @@ epoll_create, epoll_create1 \- create an epoll instance
.fi
.SH DESCRIPTION
-.LP
The \fBepoll_create()\fR and \fBepoll_create1()\fR functions both create an
\fBepoll\fR(5) instance that can be operated upon via \fBepoll_ctl\fR(3C),
\fBepoll_wait\fR(3C) and \fBepoll_pwait\fR(3C). \fBepoll\fR instances are
@@ -49,11 +46,9 @@ Instance should be closed upon an
.RE
.SH RETURN VALUES
-.LP
Upon successful completion, 0 is returned. Otherwise, -1 is returned and errno
is set to indicate the error.
.SH ERRORS
-.LP
The \fBepoll_create()\fR and \fBepoll_create1()\fR functions will fail if:
.sp
.ne 2
@@ -86,8 +81,6 @@ The maximum allowable number of files is currently open in the system.
.sp
.SH NOTES
-.LP
-
The \fBepoll\fR(5) facility is implemented for purposes of offering
compatibility for Linux-borne applications; native
applications should continue to prefer using event ports via the
@@ -95,5 +88,4 @@ applications should continue to prefer using event ports via the
interfaces. See \fBepoll\fR(5) for compatibility details and restrictions.
.SH SEE ALSO
-.LP
\fBepoll_ctl\fR(3C), \fBepoll_wait\fR(3C), \fBepoll\fR(5)