4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
23 * Copyright 2008 Sun Microsystems, Inc. All rights reserved.
24 * Use is subject to license terms.
27 /* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */
28 /* All Rights Reserved */
30 #ifndef _SYS_IAPRIOCNTL_H
31 #define _SYS_IAPRIOCNTL_H
33 #include <sys/types.h>
34 #include <sys/thread.h>
41 * Interactive class specific structures for the priocntl system call.
45 * Beginning of iaparms structure must match tsparms structure so they
46 * can be used interchangeably.
49 typedef struct iaparms
{
50 pri_t ia_uprilim
; /* user priority limit */
51 pri_t ia_upri
; /* user priority */
52 int ia_mode
; /* interactive on/off */
55 typedef struct iaclass
{
57 int pc_clparms
[PC_CLPARMSZ
];
60 typedef struct iainfo
{
61 pri_t ia_maxupri
; /* configured limits of user priority range */
64 #define IA_NOCHANGE -32768
68 #define IA_INTERACTIVE_OFF 0x00 /* thread is not interactive */
69 #define IA_SET_INTERACTIVE 0x01 /* thread is interactive */
70 #define IA_BOOST 10 /* value for boost */
73 * Interactive class specific keys for the priocntl system call
76 #define IA_KY_UPRILIM 1 /* user priority limit */
77 #define IA_KY_UPRI 2 /* user priority */
78 #define IA_KY_MODE 3 /* interactive on/off */
81 * The following is used by the dispadmin(8) command for
82 * scheduler administration and is not for general use.
86 /* Data structure for ILP32 clients */
87 typedef struct iaadmin32
{
92 #endif /* _SYSCALL32 */
94 typedef struct iaadmin
{
95 struct iadpent
*ia_dpents
;
100 #define IA_GETDPSIZE 1
101 #define IA_GETDPTBL 2
102 #define IA_SETDPTBL 3
108 #endif /* _SYS_IAPRIOCNTL_H */