summaryrefslogtreecommitdiff
path: root/usr/src/uts/common/sys/pset.h
blob: 395b3850a8f64dbfe4da13defad4bc4222b28497 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/*
 * CDDL HEADER START
 *
 * The contents of this file are subject to the terms of the
 * Common Development and Distribution License, Version 1.0 only
 * (the "License").  You may not use this file except in compliance
 * with the License.
 *
 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
 * or http://www.opensolaris.org/os/licensing.
 * See the License for the specific language governing permissions
 * and limitations under the License.
 *
 * When distributing Covered Code, include this CDDL HEADER in each
 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
 * If applicable, add the following below this CDDL HEADER, with the
 * fields enclosed by brackets "[]" replaced with your own identifying
 * information: Portions Copyright [yyyy] [name of copyright owner]
 *
 * CDDL HEADER END
 */
/*
 * Copyright 2004 Sun Microsystems, Inc.  All rights reserved.
 * Use is subject to license terms.
 */

#ifndef	_SYS_PSET_H
#define	_SYS_PSET_H

#pragma ident	"%Z%%M%	%I%	%E% SMI"

#ifdef	__cplusplus
extern "C" {
#endif

#if !defined(_ASM)

#include <sys/types.h>
#include <sys/processor.h>
#include <sys/procset.h>

typedef int psetid_t;

/* special processor set id's */
#define	PS_NONE		-1
#define	PS_QUERY	-2
#define	PS_MYID		-3

/* types of processor sets */
#define	PS_SYSTEM	1
#define	PS_PRIVATE	2

#ifndef	_KERNEL
#ifdef	__STDC__

extern int	pset_create(psetid_t *);
extern int	pset_destroy(psetid_t);
extern int	pset_assign(psetid_t, processorid_t, psetid_t *);
extern int	pset_info(psetid_t, int *, uint_t *, processorid_t *);
extern int	pset_bind(psetid_t, idtype_t, id_t, psetid_t *);
extern int	pset_getloadavg(psetid_t, double [], int);
extern int	pset_list(psetid_t *, uint_t *);
extern int	pset_setattr(psetid_t, uint_t);
extern int	pset_getattr(psetid_t, uint_t *);

#else

extern int	pset_create();
extern int	pset_destroy();
extern int	pset_assign();
extern int	pset_info();
extern int	pset_bind();
extern int	pset_getloadavg();
extern int	pset_list();
extern int	pset_setattr();
extern int	pset_getattr();

#endif	/* __STDC__ */
#endif	/* ! _KERNEL */

#endif	/* !defined(_ASM) */

/* system call subcodes */
#define	PSET_CREATE		0
#define	PSET_DESTROY		1
#define	PSET_ASSIGN		2
#define	PSET_INFO		3
#define	PSET_BIND		4
#define	PSET_GETLOADAVG		5
#define	PSET_LIST		6
#define	PSET_SETATTR		7
#define	PSET_GETATTR		8
#define	PSET_ASSIGN_FORCED	9

/* attribute bits */
#define	PSET_NOESCAPE	0x0001

#ifdef	__cplusplus
}
#endif

#endif	/* _SYS_PSET_H */