aboutsummaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorMark Johnston <markj@FreeBSD.org>2020-08-17 13:08:04 +0000
committerMark Johnston <markj@FreeBSD.org>2020-08-17 13:08:04 +0000
commit48a528cfaabd1f7c1717756c48beeac7d76a0ae9 (patch)
treef74b110ff7ff04f040e67c1dfacbe8a4a63d7b65 /usr.bin
parent4b1c248795c2143d555b0933e09e65deb8f69309 (diff)
downloadsrc-48a528cfaabd1f7c1717756c48beeac7d76a0ae9.tar.gz
src-48a528cfaabd1f7c1717756c48beeac7d76a0ae9.zip
cpuset(1): Update the usage message.
Parameters related to domain selection were not listed. MFC after: 1 week Sponsored by: Juniper Networks, Klara Inc.
Notes
Notes: svn path=/head/; revision=364304
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/cpuset/cpuset.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/usr.bin/cpuset/cpuset.c b/usr.bin/cpuset/cpuset.c
index 9e3eedaa274a..b5f674f0d6b2 100644
--- a/usr.bin/cpuset/cpuset.c
+++ b/usr.bin/cpuset/cpuset.c
@@ -458,15 +458,16 @@ usage(void)
{
fprintf(stderr,
- "usage: cpuset [-l cpu-list] [-s setid] cmd ...\n");
+ "usage: cpuset [-l cpu-list] [-n policy:domain-list] [-s setid] cmd ...\n");
fprintf(stderr,
- " cpuset [-l cpu-list] [-s setid] -p pid\n");
+ " cpuset [-l cpu-list] [-n policy:domain-list] [-s setid] -p pid\n");
fprintf(stderr,
- " cpuset [-c] [-l cpu-list] -C -p pid\n");
+ " cpuset [-c] [-l cpu-list] [-n policy:domain-list] -C -p pid\n");
fprintf(stderr,
- " cpuset [-c] [-l cpu-list] [-j jailid | -p pid | -t tid | -s setid | -x irq]\n");
+ " cpuset [-c] [-l cpu-list] [-n policy:domain-list]\n"
+ " [-j jailid | -p pid | -t tid | -s setid | -x irq]\n");
fprintf(stderr,
- " cpuset -g [-cir] [-d domain | -j jailid | -p pid | -t tid | -s setid |\n"
- " -x irq]\n");
+ " cpuset -g [-cir]\n"
+ " [-d domain | -j jailid | -p pid | -t tid | -s setid | -x irq]\n");
exit(1);
}