diff options
| author | Alejandro Colomar <alx.manpages@gmail.com> | 2022-03-06 21:49:17 +0100 |
|---|---|---|
| committer | Alejandro Colomar <alx.manpages@gmail.com> | 2022-03-06 21:49:17 +0100 |
| commit | a42212d032be5fa0dcdccb5343e49edcc4681fb5 (patch) | |
| tree | 1354f400f957e59982f49cc2fb8620115b75613c | |
| parent | c5a6dbf9df539c9337ae1b46907454a23ae5c762 (diff) | |
| download | man-pages-a42212d032be5fa0dcdccb5343e49edcc4681fb5.tar.gz | |
Various pages: Add LIBRARY section (librt)
Signed-off-by: Alejandro Colomar <alx.manpages@gmail.com>
| -rw-r--r-- | man3/aio_cancel.3 | 5 | ||||
| -rw-r--r-- | man3/aio_error.3 | 5 | ||||
| -rw-r--r-- | man3/aio_fsync.3 | 5 | ||||
| -rw-r--r-- | man3/aio_init.3 | 5 | ||||
| -rw-r--r-- | man3/aio_read.3 | 5 | ||||
| -rw-r--r-- | man3/aio_return.3 | 5 | ||||
| -rw-r--r-- | man3/aio_suspend.3 | 5 | ||||
| -rw-r--r-- | man3/aio_write.3 | 5 | ||||
| -rw-r--r-- | man3/lio_listio.3 | 5 |
9 files changed, 27 insertions, 18 deletions
diff --git a/man3/aio_cancel.3 b/man3/aio_cancel.3 index a84b758de6..6dca1259bd 100644 --- a/man3/aio_cancel.3 +++ b/man3/aio_cancel.3 @@ -5,13 +5,14 @@ .TH AIO_CANCEL 3 2021-03-22 "" "Linux Programmer's Manual" .SH NAME aio_cancel \- cancel an outstanding asynchronous I/O request +.SH LIBRARY +Real-time library +.RI ( librt ", " -lrt ) .SH SYNOPSIS .nf .B "#include <aio.h>" .PP .BI "int aio_cancel(int " fd ", struct aiocb *" aiocbp ); -.PP -Link with \fI\-lrt\fP. .fi .SH DESCRIPTION The diff --git a/man3/aio_error.3 b/man3/aio_error.3 index 20f3edcb89..aa5ff69a78 100644 --- a/man3/aio_error.3 +++ b/man3/aio_error.3 @@ -5,13 +5,14 @@ .TH AIO_ERROR 3 2021-03-22 "" "Linux Programmer's Manual" .SH NAME aio_error \- get error status of asynchronous I/O operation +.SH LIBRARY +Real-time library +.RI ( librt ", " -lrt ) .SH SYNOPSIS .nf .B "#include <aio.h>" .PP .BI "int aio_error(const struct aiocb *" aiocbp ); -.PP -Link with \fI\-lrt\fP. .fi .SH DESCRIPTION The diff --git a/man3/aio_fsync.3 b/man3/aio_fsync.3 index 51c73cb177..409a3f6674 100644 --- a/man3/aio_fsync.3 +++ b/man3/aio_fsync.3 @@ -5,13 +5,14 @@ .TH AIO_FSYNC 3 2021-03-22 "" "Linux Programmer's Manual" .SH NAME aio_fsync \- asynchronous file synchronization +.SH LIBRARY +Real-time library +.RI ( librt ", " -lrt ) .SH SYNOPSIS .nf .B "#include <aio.h>" .PP .BI "int aio_fsync(int " op ", struct aiocb *" aiocbp ); -.PP -Link with \fI\-lrt\fP. .fi .SH DESCRIPTION The diff --git a/man3/aio_init.3 b/man3/aio_init.3 index a4a6414c51..ad8baf1001 100644 --- a/man3/aio_init.3 +++ b/man3/aio_init.3 @@ -5,6 +5,9 @@ .TH AIO_INIT 3 2020-08-13 "Linux" "Linux Programmer's Manual" .SH NAME aio_init \- asynchronous I/O initialization +.SH LIBRARY +Real-time library +.RI ( librt ", " -lrt ) .SH SYNOPSIS .nf .BR "#define _GNU_SOURCE" " /* See feature_test_macros(7) */" @@ -12,8 +15,6 @@ aio_init \- asynchronous I/O initialization .PP .BI "void aio_init(const struct aioinit *" init ); .fi -.PP -Link with \fI\-lrt\fP. .SH DESCRIPTION The GNU-specific .BR aio_init () diff --git a/man3/aio_read.3 b/man3/aio_read.3 index 37c988caab..d1eb89b019 100644 --- a/man3/aio_read.3 +++ b/man3/aio_read.3 @@ -5,13 +5,14 @@ .TH AIO_READ 3 2021-03-22 "" "Linux Programmer's Manual" .SH NAME aio_read \- asynchronous read +.SH LIBRARY +Real-time library +.RI ( librt ", " -lrt ) .SH SYNOPSIS .nf .B "#include <aio.h>" .PP .BI "int aio_read(struct aiocb *" aiocbp ); -.PP -Link with \fI\-lrt\fP. .fi .SH DESCRIPTION The diff --git a/man3/aio_return.3 b/man3/aio_return.3 index 8531532b56..1678298c33 100644 --- a/man3/aio_return.3 +++ b/man3/aio_return.3 @@ -5,13 +5,14 @@ .TH AIO_RETURN 3 2021-03-22 "" "Linux Programmer's Manual" .SH NAME aio_return \- get return status of asynchronous I/O operation +.SH LIBRARY +Real-time library +.RI ( librt ", " -lrt ) .SH SYNOPSIS .nf .B "#include <aio.h>" .PP .BI "ssize_t aio_return(struct aiocb *" aiocbp ); -.PP -Link with \fI\-lrt\fP. .fi .SH DESCRIPTION The diff --git a/man3/aio_suspend.3 b/man3/aio_suspend.3 index 5d91de5efd..129aa04b7c 100644 --- a/man3/aio_suspend.3 +++ b/man3/aio_suspend.3 @@ -6,6 +6,9 @@ .TH AIO_SUSPEND 3 2021-03-22 "" "Linux Programmer's Manual" .SH NAME aio_suspend \- wait for asynchronous I/O operation or timeout +.SH LIBRARY +Real-time library +.RI ( librt ", " -lrt ) .SH SYNOPSIS .nf .PP @@ -13,8 +16,6 @@ aio_suspend \- wait for asynchronous I/O operation or timeout .PP .BI "int aio_suspend(const struct aiocb *const " aiocb_list "[], int " nitems , .BI " const struct timespec *restrict " timeout ); -.PP -Link with \fI\-lrt\fP. .fi .SH DESCRIPTION The diff --git a/man3/aio_write.3 b/man3/aio_write.3 index 9705ce268d..320ed690d5 100644 --- a/man3/aio_write.3 +++ b/man3/aio_write.3 @@ -5,13 +5,14 @@ .TH AIO_WRITE 3 2021-03-22 "" "Linux Programmer's Manual" .SH NAME aio_write \- asynchronous write +.SH LIBRARY +Real-time library +.RI ( librt ", " -lrt ) .SH SYNOPSIS .nf .B "#include <aio.h>" .PP .BI "int aio_write(struct aiocb *" aiocbp ); -.PP -Link with \fI\-lrt\fP. .fi .SH DESCRIPTION The diff --git a/man3/lio_listio.3 b/man3/lio_listio.3 index b28cd0a55d..24540fbe35 100644 --- a/man3/lio_listio.3 +++ b/man3/lio_listio.3 @@ -5,14 +5,15 @@ .TH LIO_LISTIO 3 2021-03-22 "" "Linux Programmer's Manual" .SH NAME lio_listio \- initiate a list of I/O requests +.SH LIBRARY +Real-time library +.RI ( librt ", " -lrt ) .SH SYNOPSIS .nf .B "#include <aio.h>" .PP .BI "int lio_listio(int " mode ", struct aiocb *restrict const " aiocb_list [restrict], .BI " int " nitems ", struct sigevent *restrict " sevp ); -.PP -Link with \fI\-lrt\fP. .fi .SH DESCRIPTION The |
