[BACK]Return to cpuset.3 CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / lib / libc / gen

File: [cvs.NetBSD.org] / src / lib / libc / gen / cpuset.3 (download)

Revision 1.1.2.2, Tue Jun 17 09:13:33 2008 UTC (15 years, 10 months ago) by yamt
Branch: yamt-pf42
Changes since 1.1.2.1: +118 -0 lines

sync with head.

.\"	$NetBSD: cpuset.3,v 1.1.2.2 2008/06/17 09:13:33 yamt Exp $
.\"
.\" Copyright (c) 2008 The NetBSD Foundation, Inc.
.\" All rights reserved.
.\"
.\" This code is derived from software contributed to The NetBSD Foundation
.\" by Mindaugas Rasiukevicius <rmind at NetBSD org>.
.\"
.\" Redistribution and use in source and binary forms, with or without
.\" modification, are permitted provided that the following conditions
.\" are met:
.\" 1. Redistributions of source code must retain the above copyright
.\"    notice, this list of conditions and the following disclaimer.
.\" 2. Redistributions in binary form must reproduce the above copyright
.\"    notice, this list of conditions and the following disclaimer in the
.\"    documentation and/or other materials provided with the distribution.
.\"
.\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
.\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
.\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
.\" PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
.\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
.\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
.\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
.\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
.\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
.\" POSSIBILITY OF SUCH DAMAGE.
.\"
.Dd June 16, 2008
.Dt CPUSET 3
.Os
.Sh NAME
.Nm cpuset_create ,
.Nm cpuset_destroy ,
.Nm cpuset_zero ,
.Nm cpuset_set ,
.Nm cpuset_clr ,
.Nm cpuset_isset ,
.Nm cpuset_size
.Nd dynamic CPU sets
.Sh SYNOPSIS
.In sched.h
.Ft cpuset_t
.Fn cpuset_create "void"
.Ft void
.Fn cpuset_destroy "cpuset_t *set"
.Ft void
.Fn cpuset_zero "cpuset_t *set"
.Ft int
.Fn cpuset_set "cpuset_t *set" "cpuid_t cpu"
.Ft int
.Fn cpuset_clr "cpuset_t *set" "cpuid_t cpu"
.Ft int
.Fn cpuset_isset "const cpuset_t *set" "cpuid_t cpu"
.Ft size_t
.Fn cpuset_size "const cpuset_t *set"
.Sh DESCRIPTION
This section describes the functions used to create, set, use and destroy
the dynamic CPU sets.
.Pp
This API can be used with the POSIX threads, see
.Xr pthread 3
and
.Xr affinity 3 .
.Pp
The ID of primary CPU in the system is counted from 0.
.Sh FUNCTIONS
.Bl -tag -width compact
.It Fn cpuset_create
Allocates and initializes a clean CPU-set.
Returns the pointer to the CPU-set, or
.Dv NULL
on failure.
.It Fn cpuset_destroy set
Destroy the CPU-set specified by
.Fa set .
.It Fn cpuset_zero set
Makes the CPU-set specified by
.Fa set
clean, that is, memory is initialized to zero bytes, and none of
the CPUs set.
.It Fn cpuset_set set cpu
Sets the CPU specified by
.Fa cpu
in
.Fa set .
Returns zero on success, and \-1 if
.Fa cpu
is invalid.
.It Fn cpuset_clr set cpu
Clears the CPU specified by
.Fa cpu
in the CPU-set
.Fa set .
Returns zero on success, and \-1 if
.Fa cpu
is invalid.
.It Fn cpuset_isset set cpu
Checks if CPU specified by
.Fa cpu
is set in the CPU-set
.Fa set .
Returns the positive number if set, zero if not set, and \-1 if
.Fa cpu
is invalid.
.It Fn cpuset_size set
Returns the size in bytes of CPU-set specified by
.Fa set .
.El
.Sh SEE ALSO
.Xr affinity 3 ,
.Xr pset 3 ,
.Xr sched 3 ,
.Xr schedctl 8
.Sh HISTORY
The dynamic CPU sets appeared in
.Nx 5.0 .