bldenv/nightly: remove unused RELEASE_MICRO/DEV_CM
[unleashed.git] / include / zone.h
blob9362a403a11e78eced2482c7648b41bb6be5c76a
1 /*
2 * CDDL HEADER START
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]
19 * CDDL HEADER END
22 * Copyright 2009 Sun Microsystems, Inc. All rights reserved.
23 * Use is subject to license terms.
26 #ifndef _ZONE_H
27 #define _ZONE_H
29 #include <sys/types.h>
30 #include <sys/zone.h>
31 #include <sys/priv.h>
33 #ifdef __cplusplus
34 extern "C" {
35 #endif
38 * Functions for mapping between id and name for active zones.
40 extern zoneid_t getzoneid(void);
41 extern zoneid_t getzoneidbyname(const char *);
42 extern ssize_t getzonenamebyid(zoneid_t, char *, size_t);
45 * NOTE
47 * The remaining contents of this file are private to the implementation
48 * of Solaris and are subject to change at any time without notice,
49 * Applications using these interfaces may fail to run on future releases.
52 extern int zonept(int, zoneid_t);
53 extern int zone_get_id(const char *, zoneid_t *);
55 /* System call API */
56 extern zoneid_t zone_create(const char *, const char *,
57 const struct priv_set *, const char *, size_t, const char *, size_t, int *,
58 int);
59 extern int zone_boot(zoneid_t);
60 extern int zone_destroy(zoneid_t);
61 extern ssize_t zone_getattr(zoneid_t, int, void *, size_t);
62 extern int zone_setattr(zoneid_t, int, void *, size_t);
63 extern int zone_enter(zoneid_t);
64 extern int zone_list(zoneid_t *, uint_t *);
65 extern int zone_shutdown(zoneid_t);
66 extern int zone_version(int *);
67 extern int zone_add_datalink(zoneid_t, datalink_id_t);
68 extern int zone_remove_datalink(zoneid_t, datalink_id_t);
69 extern int zone_check_datalink(zoneid_t *, datalink_id_t);
70 extern int zone_list_datalink(zoneid_t, int *, datalink_id_t *);
72 #ifdef __cplusplus
74 #endif
76 #endif /* _ZONE_H */