zonecfg.h (c94c1ef04ec0f34ea2c56ad7cde335368c9be152) zonecfg.h (cb8a054b1ab30d5caa746e6c44f29d4c9d3071c1)
1/*
2 * CDDL HEADER START
3 *
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.
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE

--- 6 unchanged lines hidden (view full) ---

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]
18 *
19 * CDDL HEADER END
20 */
21
22/*
1/*
2 * CDDL HEADER START
3 *
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.
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE

--- 6 unchanged lines hidden (view full) ---

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]
18 *
19 * CDDL HEADER END
20 */
21
22/*
23 * Copyright 2009 Sun Microsystems, Inc. All rights reserved.
24 * Use is subject to license terms.
23 * Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved.
25 */
26
27#ifndef _ZONECFG_H
28#define _ZONECFG_H
29
30/*
31 * header file for zonecfg command
32 */

--- 51 unchanged lines hidden (view full) ---

84#define RT_MAXSHMIDS 19 /* really a rctl alias property, but for info */
85#define RT_MAXMSGIDS 20 /* really a rctl alias property, but for info */
86#define RT_MAXSEMIDS 21 /* really a rctl alias property, but for info */
87#define RT_SHARES 22 /* really a rctl alias property, but for info */
88#define RT_SCHED 23 /* really a property, but for info ... */
89#define RT_IPTYPE 24 /* really a property, but for info ... */
90#define RT_PCAP 25
91#define RT_HOSTID 26 /* really a property, but for info ... */
24 */
25
26#ifndef _ZONECFG_H
27#define _ZONECFG_H
28
29/*
30 * header file for zonecfg command
31 */

--- 51 unchanged lines hidden (view full) ---

83#define RT_MAXSHMIDS 19 /* really a rctl alias property, but for info */
84#define RT_MAXMSGIDS 20 /* really a rctl alias property, but for info */
85#define RT_MAXSEMIDS 21 /* really a rctl alias property, but for info */
86#define RT_SHARES 22 /* really a rctl alias property, but for info */
87#define RT_SCHED 23 /* really a property, but for info ... */
88#define RT_IPTYPE 24 /* really a property, but for info ... */
89#define RT_PCAP 25
90#define RT_HOSTID 26 /* really a property, but for info ... */
91#define RT_ADMIN 27
92
93#define RT_MIN RT_UNKNOWN
92
93#define RT_MIN RT_UNKNOWN
94#define RT_MAX RT_HOSTID
94#define RT_MAX RT_ADMIN
95
96/* property types: increment PT_MAX when expanding this list */
97#define PT_UNKNOWN 0
98#define PT_ZONENAME 1
99#define PT_ZONEPATH 2
100#define PT_AUTOBOOT 3
101#define PT_POOL 4
102#define PT_DIR 5

--- 23 unchanged lines hidden (view full) ---

126#define PT_MAXMSGIDS 29
127#define PT_MAXSEMIDS 30
128#define PT_MAXLOCKEDMEM 31
129#define PT_MAXSWAP 32
130#define PT_SCHED 33
131#define PT_IPTYPE 34
132#define PT_DEFROUTER 35
133#define PT_HOSTID 36
95
96/* property types: increment PT_MAX when expanding this list */
97#define PT_UNKNOWN 0
98#define PT_ZONENAME 1
99#define PT_ZONEPATH 2
100#define PT_AUTOBOOT 3
101#define PT_POOL 4
102#define PT_DIR 5

--- 23 unchanged lines hidden (view full) ---

126#define PT_MAXMSGIDS 29
127#define PT_MAXSEMIDS 30
128#define PT_MAXLOCKEDMEM 31
129#define PT_MAXSWAP 32
130#define PT_SCHED 33
131#define PT_IPTYPE 34
132#define PT_DEFROUTER 35
133#define PT_HOSTID 36
134#define PT_USER 37
135#define PT_AUTHS 38
134
135#define PT_MIN PT_UNKNOWN
136
137#define PT_MIN PT_UNKNOWN
136#define PT_MAX PT_HOSTID
138#define PT_MAX PT_AUTHS
137
138#define MAX_EQ_PROP_PAIRS 3
139
140#define PROP_VAL_SIMPLE 0
141#define PROP_VAL_COMPLEX 1
142#define PROP_VAL_LIST 2
143
144#define PROP_VAL_MIN PROP_VAL_SIMPLE

--- 85 unchanged lines hidden ---
139
140#define MAX_EQ_PROP_PAIRS 3
141
142#define PROP_VAL_SIMPLE 0
143#define PROP_VAL_COMPLEX 1
144#define PROP_VAL_LIST 2
145
146#define PROP_VAL_MIN PROP_VAL_SIMPLE

--- 85 unchanged lines hidden ---