mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-25 09:15:32 +02:00
Fix syntax (#7543)
Fix the syntax for running on non-sequential CPUs, which is done with commas. Also fix the syntax for running on sequential CPUs, which uses a "-".
This commit is contained in:
parent
b286619266
commit
b205ef3b38
1 changed files with 2 additions and 2 deletions
|
@ -16,8 +16,8 @@
|
|||
|
||||
- Start a new process with affinity for multiple non-sequential CPUs:
|
||||
|
||||
`taskset --cpu-list {{cpu_id_1}} {{cpu_id_2}} {{cpu_id_3}}`
|
||||
`taskset --cpu-list {{cpu_id_1}},{{cpu_id_2}},{{cpu_id_3}}`
|
||||
|
||||
- Start a new process with affinity for CPUs 1 through 4:
|
||||
|
||||
`taskset --cpu-list {{cpu_id_1}},{{cpu_id_4}}`
|
||||
`taskset --cpu-list {{cpu_id_1}}-{{cpu_id_4}}`
|
||||
|
|
Loading…
Add table
Reference in a new issue