]> err.no Git - util-linux/commitdiff
man-pages: cleanup of chrt.1 and taskset.1
authorLaMont Jones <lamont@mmjgroup.com>
Tue, 14 Aug 2007 13:28:14 +0000 (07:28 -0600)
committerKarel Zak <kzak@redhat.com>
Wed, 15 Aug 2007 10:03:51 +0000 (12:03 +0200)
Signed-off-by: LaMont Jones <lamont@mmjgroup.com>
Signed-off-by: Karel Zak <kzak@redhat.com>
schedutils/chrt.1
schedutils/taskset.1

index 01f7650cf5d712d39400b6e3c2e781a2827402fd..dbc29589af0ced8f5a487c40c94998c26ea27a42 100644 (file)
 chrt \- manipulate real-time attributes of a process
 .SH SYNOPSIS
 .B chrt
-[\fIoptions\fR] [\fIprio\fR] [\fIpid\fR | \fIcommand\fR [\fIarg\fR]...]
+.RI [ options ]\  prio
+.IR command\  [ arg ]...
+.br
+.B chrt
+.RI [ options ]
+.B \-p
+.RI [ prio ]\  pid
 .SH DESCRIPTION
 .PP
 .BR chrt (1)
index dbf92e391f3f16c6726afda85618543f6d43294f..af3dc4b0f331adb9ad6ccb2316a97c0c337d7284 100644 (file)
 .\"
 .TH TASKSET "1" "Apr 2003" "schedutils" "Linux User's Manual"
 .SH NAME
-taskset \- retrieve or set a processes's CPU affinity
+taskset \- retrieve or set a process's CPU affinity
 .SH SYNOPSIS
 .B taskset
-[\fIoptions\fR] [\fImask\fR | \fIlist\fI ] [\fIpid\fR | \fIcommand\fR [\fIarg\fR]...]
+.RI [ options ]\  mask
+.IR command\  [ arg ]...
+.br
+.B taskset
+.RI [ options ]
+.B \-p
+.RI [ mask ]\  pid
 .SH DESCRIPTION
 .PP
 .BR taskset
@@ -66,32 +72,36 @@ returns, it is guaranteed that the given program has been scheduled to a legal
 CPU.
 .SH OPTIONS
 .TP
-.B -p, --pid
+.BR \-p ,\  \-\-pid
 operate on an existing PID and not launch a new task
 .TP
-.B -c, --cpu-list
-specifiy a numerical list of processors instead of a bitmask.  The list may
+.BR \-c ,\  \-\-cpu-list
+specify a numerical list of processors instead of a bitmask.  The list may
 contain multiple items, separated by comma, and ranges.  For example,
 .BR 0,5,7,9-11 .
 .TP
-.B -h, --help
+.BR \-h ,\  \-\-help
 display usage information and exit
 .TP
-.B -V, --version
+.BR \-V ,\  \-\-version
 output version information and exit
 .SH USAGE
 .TP
 The default behavior is to run a new command with a given affinity mask:
-taskset [mask] [command] [arguments]
+.B taskset
+.I mask
+.IR command\  [ arguments ]
 .TP
 You can also retrieve the CPU affinity of an existing task:
-taskset -p [pid]
+.B taskset \-p
+.I pid
 .TP
 Or set it:
-taskset -p [mask] [pid]
+.B taskset \-p
+.I mask pid
 .SH PERMISSIONS
 A user must possess
-.BR CAP_SYS_NICE
+.B CAP_SYS_NICE
 to change the CPU affinity of a process.  Any user can retrieve the affinity
 mask.
 .SH AUTHOR