* Missing word in aio.7
@ 2010-10-06 21:39 Denis Barbier
[not found] ` <AANLkTi=TgkncPeFgP8WTKnHn96Qm6xYK4mdLzumY6Vie-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
0 siblings, 1 reply; 4+ messages in thread
From: Denis Barbier @ 2010-10-06 21:39 UTC (permalink / raw)
To: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w,
linux-man-u79uwXL29TY76Z2rM5mHXA
Hello,
Around line 120 of man7/aio.7:
This field specifies a value that is subtracted
from the calling thread's real-time priority in order to
determine the priority for execution of this I/O request.
.BR pthread_setschedparam (3)).
Here is a patch
-determine the priority for execution of this I/O request.
+determine the priority for execution of this I/O request (see
but you may want to change punctuation.
Denis
--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 4+ messages in thread[parent not found: <AANLkTi=TgkncPeFgP8WTKnHn96Qm6xYK4mdLzumY6Vie-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>]
* [patch] aio.7: Some minor typos (Was: Missing word in aio.7) [not found] ` <AANLkTi=TgkncPeFgP8WTKnHn96Qm6xYK4mdLzumY6Vie-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> @ 2010-10-07 15:43 ` David Prévot [not found] ` <4CADEABC.1040005-whniv8GeeGkdnm+yROfE0A@public.gmane.org> 2010-10-09 14:43 ` Missing word in aio.7 Michael Kerrisk 1 sibling, 1 reply; 4+ messages in thread From: David Prévot @ 2010-10-07 15:43 UTC (permalink / raw) Cc: linux-man-u79uwXL29TY76Z2rM5mHXA -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi, Please find inline a patch including Denis' proposal and two others spotted during translation, against current aio(7) manual page. diff --git a/man7/aio.7 b/man7/aio.7 index e1d6d2b..5a0f734 100644 - --- a/man7/aio.7 +++ b/man7/aio.7 @@ -119,11 +119,11 @@ This is the size of the buffer pointed to by .I aio_reqprio This field specifies a value that is subtracted from the calling thread's real-time priority in order to - -determine the priority for execution of this I/O request. +determine the priority for execution of this I/O request (see .BR pthread_setschedparam (3)). The specified value must be between 0 and the value returned by .IR sysconf(_SC_AIO_PRIO_DELTA_MAX) . - -This field is ignored file synchronization operations. +This field is ignored during file synchronization operations. .TP .I aio_sigevent This field is a structure that specifies how the caller is @@ -448,7 +448,7 @@ main(int argc, char *argv[]) .BR io_setup (2), .BR io_cancel (2), .BR io_destroy (2), - -.BR io_getevents (2)), +.BR io_getevents (2), .BR aio_cancel (3), .BR aio_error (3), .BR aio_init (3), Regards David -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (GNU/Linux) iEYEARECAAYFAkyt6rsACgkQ18/WetbTC/op/QCfeVh+YZBzATMWFT+IuMpxLIfh cpwAoI8YdhmQGszmVYipdT4U5aEUJvmb =e8Tu -----END PGP SIGNATURE----- -- To unsubscribe from this list: send the line "unsubscribe linux-man" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 4+ messages in thread
[parent not found: <4CADEABC.1040005-whniv8GeeGkdnm+yROfE0A@public.gmane.org>]
* Re: [patch] aio.7: Some minor typos (Was: Missing word in aio.7) [not found] ` <4CADEABC.1040005-whniv8GeeGkdnm+yROfE0A@public.gmane.org> @ 2010-10-09 14:46 ` Michael Kerrisk 0 siblings, 0 replies; 4+ messages in thread From: Michael Kerrisk @ 2010-10-09 14:46 UTC (permalink / raw) To: David Prévot; +Cc: linux-man-u79uwXL29TY76Z2rM5mHXA Hello David, On Thu, Oct 7, 2010 at 5:43 PM, David Prévot <davidp-whniv8GeeGkdnm+yROfE0A@public.gmane.org> wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > Hi, > > Please find inline a patch including Denis' proposal and two others > spotted during translation, against current aio(7) manual page. > > > diff --git a/man7/aio.7 b/man7/aio.7 > index e1d6d2b..5a0f734 100644 > - --- a/man7/aio.7 > +++ b/man7/aio.7 > @@ -119,11 +119,11 @@ This is the size of the buffer pointed to by > .I aio_reqprio > This field specifies a value that is subtracted > from the calling thread's real-time priority in order to > - -determine the priority for execution of this I/O request. > +determine the priority for execution of this I/O request (see > .BR pthread_setschedparam (3)). > The specified value must be between 0 and the value returned by > .IR sysconf(_SC_AIO_PRIO_DELTA_MAX) . > - -This field is ignored file synchronization operations. > +This field is ignored during file synchronization operations. > .TP > .I aio_sigevent > This field is a structure that specifies how the caller is > @@ -448,7 +448,7 @@ main(int argc, char *argv[]) > .BR io_setup (2), > .BR io_cancel (2), > .BR io_destroy (2), > - -.BR io_getevents (2)), > +.BR io_getevents (2), > .BR aio_cancel (3), > .BR aio_error (3), > .BR aio_init (3), I had already myself found and fixed the first two problems, but the third one I had missed. Thanks for the patch. Applied for 3.29. Cheers, Michael -- Michael Kerrisk Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/ Author of "The Linux Programming Interface"; http://man7.org/tlpi/ -- To unsubscribe from this list: send the line "unsubscribe linux-man" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Missing word in aio.7 [not found] ` <AANLkTi=TgkncPeFgP8WTKnHn96Qm6xYK4mdLzumY6Vie-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> 2010-10-07 15:43 ` [patch] aio.7: Some minor typos (Was: Missing word in aio.7) David Prévot @ 2010-10-09 14:43 ` Michael Kerrisk 1 sibling, 0 replies; 4+ messages in thread From: Michael Kerrisk @ 2010-10-09 14:43 UTC (permalink / raw) To: Denis Barbier; +Cc: linux-man-u79uwXL29TY76Z2rM5mHXA Hello Denis, On Wed, Oct 6, 2010 at 11:39 PM, Denis Barbier <bouzim-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > Hello, > > Around line 120 of man7/aio.7: > This field specifies a value that is subtracted > from the calling thread's real-time priority in order to > determine the priority for execution of this I/O request. > .BR pthread_setschedparam (3)). > > Here is a patch > -determine the priority for execution of this I/O request. > +determine the priority for execution of this I/O request (see > but you may want to change punctuation. By chance, I had already caught and fixed this. Cheers, Michael -- Michael Kerrisk Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/ Author of "The Linux Programming Interface"; http://man7.org/tlpi/ -- To unsubscribe from this list: send the line "unsubscribe linux-man" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2010-10-09 14:46 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-10-06 21:39 Missing word in aio.7 Denis Barbier
[not found] ` <AANLkTi=TgkncPeFgP8WTKnHn96Qm6xYK4mdLzumY6Vie-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2010-10-07 15:43 ` [patch] aio.7: Some minor typos (Was: Missing word in aio.7) David Prévot
[not found] ` <4CADEABC.1040005-whniv8GeeGkdnm+yROfE0A@public.gmane.org>
2010-10-09 14:46 ` Michael Kerrisk
2010-10-09 14:43 ` Missing word in aio.7 Michael Kerrisk
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox