diff options
author | jeff <jeff@FreeBSD.org> | 2008-03-02 07:51:29 +0000 |
---|---|---|
committer | jeff <jeff@FreeBSD.org> | 2008-03-02 07:51:29 +0000 |
commit | 5ae8c3407d9794b0cec04676246cf0458bcd7747 (patch) | |
tree | 9d93cbac8478a01de6249a199dcd6a40cbf9c3ac /usr.bin/cpuset/Makefile | |
parent | 9b809b84f16f1b5f2b5c156fa35225d7453ae6ff (diff) | |
download | FreeBSD-src-5ae8c3407d9794b0cec04676246cf0458bcd7747.zip FreeBSD-src-5ae8c3407d9794b0cec04676246cf0458bcd7747.tar.gz |
Add a simple utility for manipulating cpusets. Man page will be available
soon.
- Lists of cpus may be specified with -l with ranges specified as low-high and
commas between individual cpus and ranges. ie -l 0-2,4,6-8.
- cpuset can modified -p pids, -t tids, or -s cpusetids.
- cpuset can -g get the current mask for any of the above.
Sponsored by: Nokia
Diffstat (limited to 'usr.bin/cpuset/Makefile')
-rw-r--r-- | usr.bin/cpuset/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/usr.bin/cpuset/Makefile b/usr.bin/cpuset/Makefile new file mode 100644 index 0000000..911400a --- /dev/null +++ b/usr.bin/cpuset/Makefile @@ -0,0 +1,7 @@ +# $FreeBSD$ + +PROG= cpuset +NO_MAN= true +WARNS?= 6 + +.include <bsd.prog.mk> |