aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOtto Modinos <ottomodinos@gmail.com>2022-05-31 11:39:55 +0300
committerOtto Modinos <ottomodinos@gmail.com>2022-05-31 11:39:55 +0300
commit4d9e52c62df1eb225486cc1636b2f679b621f065 (patch)
treeef7008bc08918fc5d60e1fb81df2a9f149e96809
parentc7d274054fea5e0a2fc2aa645b0c728643c355a6 (diff)
downloadliburing-4d9e52c62df1eb225486cc1636b2f679b621f065.tar.gz
man: keep the function names in their own lines
Signed-off-by: Otto Modinos <ottomodinos@gmail.com>
-rw-r--r--man/io_uring_cqe_get_data.34
-rw-r--r--man/io_uring_prep_accept.34
-rw-r--r--man/io_uring_wait_cqe_timeout.313
3 files changed, 11 insertions, 10 deletions
diff --git a/man/io_uring_cqe_get_data.3 b/man/io_uring_cqe_get_data.3
index 4c97a66..8d26415 100644
--- a/man/io_uring_cqe_get_data.3
+++ b/man/io_uring_cqe_get_data.3
@@ -15,8 +15,8 @@ io_uring_cqe_get_data - get user data for completion event
.SH DESCRIPTION
.PP
The
-.BR io_uring_cqe_get_data (3) function returns the user_data with the completion
-queue entry
+.BR io_uring_cqe_get_data (3)
+function returns the user_data with the completion queue entry
.I cqe.
After the caller has received a completion queue entry (CQE) with
diff --git a/man/io_uring_prep_accept.3 b/man/io_uring_prep_accept.3
index 3aced88..9fd7ea5 100644
--- a/man/io_uring_prep_accept.3
+++ b/man/io_uring_prep_accept.3
@@ -39,8 +39,8 @@ io_uring_prep_accept - prepare an accept request
.SH DESCRIPTION
.PP
The
-.BR io_uring_prep_accept (3) function prepares an accept request. The submission
-queue entry
+.BR io_uring_prep_accept (3)
+function prepares an accept request. The submission queue entry
.I sqe
is setup to use the file descriptor
.I sockfd
diff --git a/man/io_uring_wait_cqe_timeout.3 b/man/io_uring_wait_cqe_timeout.3
index 1e27aed..07bc9b4 100644
--- a/man/io_uring_wait_cqe_timeout.3
+++ b/man/io_uring_wait_cqe_timeout.3
@@ -16,12 +16,13 @@ io_uring_wait_cqe_timeout - wait for one io_uring completion event with timeout
.SH DESCRIPTION
.PP
The
-.BR io_uring_wait_cqe_timeout (3) function waits for one IO completion to be
-available from the queue belonging to the
+.BR io_uring_wait_cqe_timeout (3)
+function waits for one IO completion to be available from the queue belonging
+to the
.I ring
param, waiting for it if necessary or until the timeout
.I ts
-expires.If an event is already available in the ring when invoked, no waiting
+expires. If an event is already available in the ring when invoked, no waiting
will occur.
The
@@ -42,8 +43,8 @@ when waiting for a request.
.SH RETURN VALUE
On success
.BR io_uring_wait_cqes (3)
-returns 0 and the cqe_ptr parm is filled in. On failure it returns -errno.
-The return value indicates the result of waiting for a CQE, and it has no
-relation to the CQE result itself.
+returns 0 and the cqe_ptr parm is filled in. On failure it returns -errno. The
+return value indicates the result of waiting for a CQE, and it has no relation
+to the CQE result itself.
.SH SEE ALSO
.BR io_uring_submit (3), io_uring_wait_cqe_timeout (3), io_uring_wait_cqe(3).