diff options
author | Bjarni Ingi Gislason | 2018-05-18 21:21:42 +0200 |
---|---|---|
committer | Karel Zak | 2018-05-23 10:43:27 +0200 |
commit | 0bb7e904d72213b29f890364e25796685ee377f4 (patch) | |
tree | 5930dd59265bbad36cd13b69f5028d0e6d58bf61 /schedutils | |
parent | more: reorder global declarations (diff) | |
download | kernel-qcow2-util-linux-0bb7e904d72213b29f890364e25796685ee377f4.tar.gz kernel-qcow2-util-linux-0bb7e904d72213b29f890364e25796685ee377f4.tar.xz kernel-qcow2-util-linux-0bb7e904d72213b29f890364e25796685ee377f4.zip |
man: Use the correct macro for a font change of one argument
Use the correct macro (I, B) for the font change of one argument, not
those that are used for alternating two fonts, like "BR", "IR", "RB",
or "RI".
Signed-off-by: Bjarni Ingi Gislason <bjarniig@rhi.hi.is>
Diffstat (limited to 'schedutils')
-rw-r--r-- | schedutils/chrt.1 | 8 | ||||
-rw-r--r-- | schedutils/taskset.1 | 14 |
2 files changed, 11 insertions, 11 deletions
diff --git a/schedutils/chrt.1 b/schedutils/chrt.1 index 4b8b1e9da..166579e2d 100644 --- a/schedutils/chrt.1 +++ b/schedutils/chrt.1 @@ -68,7 +68,7 @@ Set scheduling policy to .TP .BR -d ,\ --deadline Set scheduling policy to -.BR SCHED_DEADLINE +.B SCHED_DEADLINE (Linux-specific, supported since 3.14). The priority argument has to be set to zero. See also \fB\-\-sched\-runtime\fR, \fB\-\-sched\-deadline\fR and \fB\-\-sched\-period\fR. The relation between the options required by the kernel is @@ -136,16 +136,16 @@ Or set them: .I priority pid .SH PERMISSIONS A user must possess -.BR CAP_SYS_NICE +.B CAP_SYS_NICE to change the scheduling attributes of a process. Any user can retrieve the scheduling information. .SH NOTES Only .BR SCHED_FIFO , -.BR SCHED_OTHER +.B SCHED_OTHER and -.BR SCHED_RR +.B SCHED_RR are part of POSIX 1003.1b Process Scheduling. The other scheduling attributes may be ignored on some systems. .P diff --git a/schedutils/taskset.1 b/schedutils/taskset.1 index 8b9062a72..6a329782a 100644 --- a/schedutils/taskset.1 +++ b/schedutils/taskset.1 @@ -53,28 +53,28 @@ bits that correspond to CPUs physically on the system. If an invalid mask is given (i.e., one that corresponds to no valid CPUs on the current system) an error is returned. The masks may be specified in hexadecimal (with or without a leading "0x"), or as a CPU list with the -.BR \-\-cpu\-list +.B \-\-cpu\-list option. For example, .RS 4 .TP 12 -.BR 0x00000001 +.B 0x00000001 is processor #0, .TP -.BR 0x00000003 +.B 0x00000003 is processors #0 and #1, .TP -.BR 0xFFFFFFFF +.B 0xFFFFFFFF is processors #0 through #31, .TP -.BR 32 +.B 32 is processors #1, #4, and #5, .TP -.BR \-\-cpu\-list\ 0-2,6 +.B \-\-cpu\-list\ 0-2,6 is processors #0, #1, #2, and #6. .RE .PP When -.BR taskset +.B taskset returns, it is guaranteed that the given program has been scheduled to a legal CPU. .SH OPTIONS |