aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/cpuset/Makefile
diff options
context:
space:
mode:
authorJeff Roberson <jeff@FreeBSD.org>2008-03-02 07:51:29 +0000
committerJeff Roberson <jeff@FreeBSD.org>2008-03-02 07:51:29 +0000
commit0d985e498decf4ebf436bb38e8f47e2ace36e824 (patch)
tree9d93cbac8478a01de6249a199dcd6a40cbf9c3ac /usr.bin/cpuset/Makefile
parent4da2b9d42f3933739bac9bccdb87427be7a69605 (diff)
downloadsrc-0d985e498decf4ebf436bb38e8f47e2ace36e824.tar.gz
src-0d985e498decf4ebf436bb38e8f47e2ace36e824.zip
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
Notes
Notes: svn path=/head/; revision=176732
Diffstat (limited to 'usr.bin/cpuset/Makefile')
-rw-r--r--usr.bin/cpuset/Makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/usr.bin/cpuset/Makefile b/usr.bin/cpuset/Makefile
new file mode 100644
index 000000000000..911400afe7ba
--- /dev/null
+++ b/usr.bin/cpuset/Makefile
@@ -0,0 +1,7 @@
+# $FreeBSD$
+
+PROG= cpuset
+NO_MAN= true
+WARNS?= 6
+
+.include <bsd.prog.mk>