From owner-cvs-all@FreeBSD.ORG Sun Mar 2 07:51:30 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 230781065670; Sun, 2 Mar 2008 07:51:30 +0000 (UTC) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id F13EB8FC20; Sun, 2 Mar 2008 07:51:29 +0000 (UTC) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m227pTud040062; Sun, 2 Mar 2008 07:51:29 GMT (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m227pTiI040061; Sun, 2 Mar 2008 07:51:29 GMT (envelope-from jeff) Message-Id: <200803020751.m227pTiI040061@repoman.freebsd.org> From: Jeff Roberson Date: Sun, 2 Mar 2008 07:51:29 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/cpuset Makefile cpuset.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 02 Mar 2008 07:51:30 -0000 jeff 2008-03-02 07:51:29 UTC FreeBSD src repository Added files: usr.bin/cpuset Makefile cpuset.c Log: 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 Revision Changes Path 1.1 +7 -0 src/usr.bin/cpuset/Makefile (new) 1.1 +328 -0 src/usr.bin/cpuset/cpuset.c (new)