1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179
|
From cdc581ebea3a745ca7c43130a1c0ec5366fa2b19 Mon Sep 17 00:00:00 2001
From: Guillem Jover <guillem@hadrons.org>
Date: Sun, 10 Dec 2017 20:20:04 +0100
Subject: [PATCH 11/15] man: Fix title header
- Update year.
- Balance double quotes.
- Remove version from source argument as recommended in man-pages(7).
- Fix all sections numbers to 3.
Signed-off-by: Guillem Jover <guillem@hadrons.org>
---
man/io.3 | 2 +-
man/io_cancel.3 | 2 +-
man/io_fsync.3 | 2 +-
man/io_getevents.3 | 2 +-
man/io_prep_fsync.3 | 2 +-
man/io_prep_pread.3 | 2 +-
man/io_prep_pwrite.3 | 2 +-
man/io_queue_init.3 | 2 +-
man/io_queue_release.3 | 2 +-
man/io_queue_run.3 | 2 +-
man/io_queue_wait.3 | 2 +-
man/io_set_callback.3 | 2 +-
man/io_submit.3 | 2 +-
13 files changed, 13 insertions(+), 13 deletions(-)
diff --git a/man/io.3 b/man/io.3
index bc529ea..52f0ab3 100644
--- a/man/io.3
+++ b/man/io.3
@@ -1,4 +1,4 @@
-.TH io 3 2002-09-12 "Linux 2.4" Linux IO"
+.TH io 3 2017-12-10 "Linux" "Linux AIO"
.SH NAME
io \- Asynchronous IO
.SH SYNOPSIS
diff --git a/man/io_cancel.3 b/man/io_cancel.3
index 261a407..62272c7 100644
--- a/man/io_cancel.3
+++ b/man/io_cancel.3
@@ -1,4 +1,4 @@
-.TH io_cancel 2 2002-09-03 "Linux 2.4" "Linux AIO"
+.TH io_cancel 3 2017-12-10 "Linux" "Linux AIO"
.SH NAME
io_cancel \- Cancel io requests
.SH SYNOPSIS
diff --git a/man/io_fsync.3 b/man/io_fsync.3
index 5400d41..6938f6b 100644
--- a/man/io_fsync.3
+++ b/man/io_fsync.3
@@ -4,7 +4,7 @@
.\" io_set_callback(iocb, cb);
.\" return io_submit(ctx, 1, &iocb);
.\" }
-.TH io_fsync 3 2002-09-12 "Linux 2.4" Linux AIO"
+.TH io_fsync 3 2017-12-10 "Linux" "Linux AIO"
.SH NAME
io_fsync \- Synchronize a file's complete in-core state with that on disk
.SH SYNOPSIS
diff --git a/man/io_getevents.3 b/man/io_getevents.3
index 95fa86e..fd67929 100644
--- a/man/io_getevents.3
+++ b/man/io_getevents.3
@@ -16,7 +16,7 @@
.\" struct io_event *events,
.\" struct timespec *timeout)
.\"
-.TH io_getevents 2 2002-09-03 "Linux 2.4" "Linux AIO"
+.TH io_getevents 3 2017-12-10 "Linux" "Linux AIO"
.SH NAME
io_getevents, aio_pgetevents \- Read resulting events from io requests
.SH SYNOPSIS
diff --git a/man/io_prep_fsync.3 b/man/io_prep_fsync.3
index 0397172..7b6dd4b 100644
--- a/man/io_prep_fsync.3
+++ b/man/io_prep_fsync.3
@@ -5,7 +5,7 @@
.\" iocb->aio_lio_opcode = IO_CMD_FSYNC;
.\" iocb->aio_reqprio = 0;
.\" }
-.TH io_prep_fsync 3 2002-09-12 "Linux 2.4" Linux AIO"
+.TH io_prep_fsync 3 2017-12-10 "Linux" "Linux AIO"
.SH NAME
io_prep_fsync \- Synchronize a file's complete in-core state with that on disk
.SH SYNOPSIS
diff --git a/man/io_prep_pread.3 b/man/io_prep_pread.3
index 3c28f61..a0508d7 100644
--- a/man/io_prep_pread.3
+++ b/man/io_prep_pread.3
@@ -8,7 +8,7 @@
.\" iocb->u.c.nbytes = count;
.\" iocb->u.c.offset = offset;
.\" }
-.TH io_prep_pread 3 2002-09-12 "Linux 2.4" Linux AIO"
+.TH io_prep_pread 3 2017-12-10 "Linux" "Linux AIO"
.SH NAME
io_prep_pread \- Set up asynchronous read
.SH SYNOPSIS
diff --git a/man/io_prep_pwrite.3 b/man/io_prep_pwrite.3
index 69479c2..8ce96ce 100644
--- a/man/io_prep_pwrite.3
+++ b/man/io_prep_pwrite.3
@@ -8,7 +8,7 @@
.\" iocb->u.c.nbytes = count;
.\" iocb->u.c.offset = offset;
.\" }
-.TH io_prep_pwrite 3 2002-09-12 "Linux 2.4" Linux AIO"
+.TH io_prep_pwrite 3 2017-12-10 "Linux" "Linux AIO"
.SH NAME
io_prep_pwrite \- Set up iocb for asynchronous writes
.SH SYNOPSIS
diff --git a/man/io_queue_init.3 b/man/io_queue_init.3
index 9c04b3f..b09da50 100644
--- a/man/io_queue_init.3
+++ b/man/io_queue_init.3
@@ -1,4 +1,4 @@
-.TH io_queue_init 2 2002-09-03 "Linux 2.4" "Linux AIO"
+.TH io_queue_init 3 2017-12-10 "Linux" "Linux AIO"
.SH NAME
io_queue_init \- Initialize asynchronous io state machine
diff --git a/man/io_queue_release.3 b/man/io_queue_release.3
index 5c9ded1..d6d5def 100644
--- a/man/io_queue_release.3
+++ b/man/io_queue_release.3
@@ -1,4 +1,4 @@
-.TH io_queue_release 2 2002-09-03 "Linux 2.4" "Linux AIO"
+.TH io_queue_release 3 2017-12-10 "Linux" "Linux AIO"
.SH NAME
io_queue_release \- Release the context associated with the userspace handle
.SH SYNOPSIS
diff --git a/man/io_queue_run.3 b/man/io_queue_run.3
index 8e0691c..ff6eb78 100644
--- a/man/io_queue_run.3
+++ b/man/io_queue_run.3
@@ -1,4 +1,4 @@
-.TH io_queue_run 2 2002-09-03 "Linux 2.4" "Linux AIO"
+.TH io_queue_run 3 2017-12-10 "Linux" "Linux AIO"
.SH NAME
io_queue_run \- Handle completed io requests
.SH SYNOPSIS
diff --git a/man/io_queue_wait.3 b/man/io_queue_wait.3
index 0cf0497..dedfcdd 100644
--- a/man/io_queue_wait.3
+++ b/man/io_queue_wait.3
@@ -1,4 +1,4 @@
-.TH io_queue_wait 2 2002-09-03 "Linux 2.4" "Linux AIO"
+.TH io_queue_wait 3 2017-12-10 "Linux" "Linux AIO"
.SH NAME
io_queue_wait \- Wait for io requests to complete
.SH SYNOPSIS
diff --git a/man/io_set_callback.3 b/man/io_set_callback.3
index 3599e8c..e8d8e60 100644
--- a/man/io_set_callback.3
+++ b/man/io_set_callback.3
@@ -1,5 +1,5 @@
.\"static inline void io_set_callback(struct iocb *iocb, io_callback_t cb)
-.TH io_set_callback 3 2002-09-12 "Linux 2.4" Linux AIO"
+.TH io_set_callback 3 2017-12-10 "Linux" "Linux AIO"
.SH NAME
io_set_callback \- Set up io completion callback function
.SH SYNOPSIS
diff --git a/man/io_submit.3 b/man/io_submit.3
index 3ae8721..953246c 100644
--- a/man/io_submit.3
+++ b/man/io_submit.3
@@ -10,7 +10,7 @@
.\" * are available to queue any iocbs. Will return 0 if nr is 0. Will
.\" * fail with -ENOSYS if not implemented.
.\" */
-.TH io_submit 2 2002-09-02 "Linux 2.4" "Linux AIO"
+.TH io_submit 3 2017-12-10 "Linux" "Linux AIO"
.SH NAME
io_submit \- Submit io requests
.SH SYNOPSIS
--
2.21.0.rc2.261.ga7da99ff1b
|