1 .\" Copyright (c) 2007 The DragonFly Project. All rights reserved.
3 .\" This code is derived from software contributed to The DragonFly Project
4 .\" by Matthew Dillon <dillon@backplane.com>
6 .\" Redistribution and use in source and binary forms, with or without
7 .\" modification, are permitted provided that the following conditions
10 .\" 1. Redistributions of source code must retain the above copyright
11 .\" notice, this list of conditions and the following disclaimer.
12 .\" 2. Redistributions in binary form must reproduce the above copyright
13 .\" notice, this list of conditions and the following disclaimer in
14 .\" the documentation and/or other materials provided with the
16 .\" 3. Neither the name of The DragonFly Project nor the names of its
17 .\" contributors may be used to endorse or promote products derived
18 .\" from this software without specific, prior written permission.
20 .\" THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 .\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 .\" LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
23 .\" FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
24 .\" COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
25 .\" INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
26 .\" BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
27 .\" LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
28 .\" AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
29 .\" OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
30 .\" OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 .\" $DragonFly: src/lib/libc/sys/usched_set.2,v 1.3 2007/07/07 17:42:48 swildner Exp $
40 .Nd setting up a proc's usched
46 .Fn usched_set "pid_t pid" "int cmd" "void *data" "int bytes"
50 function is used to perform several user scheduler tasks.
51 These tasks include: setting the user scheduler, assigning an LWP to a
52 specific CPU, adding a CPU to the available CPUs for an LWP,
53 and removing a CPU from the list of available CPUs for an LWP.
57 argument specifies the action for
60 .Dv USCHED_SET_SCHEDULER
61 sets the user scheduler where
65 that contains the name of the user scheduler.
67 assigns the LWP to the cpuid pointed to by
70 adds the cpuid specified by
72 to the list of available CPUs for the LWP.
74 removes the cpuid specified by
76 from the list of available CPUs for the LWP.
80 The function will fail if:
83 The user scheduler to set is not in the list of available user schedulers.
86 argument does is not the correct size
89 The specified cpuid is not set in
92 contains an unkown value.
94 The specified cpuid is not a valid cpuid for the system.
96 Deleting the specified cpuid leaves the LWP without a CPU to run on.
102 function call was added in
109 This manual page was written by