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]
22 * Copyright 2008 Sun Microsystems, Inc. All rights reserved.
23 * Use is subject to license terms.
26 #ifndef _SYS_CONTRACT_H
27 #define _SYS_CONTRACT_H
29 #include <sys/types.h>
35 typedef uint64_t ctevid_t
;
38 * Contract parameter maximum size, in bytes
40 #define CT_PARAM_MAX_SIZE 8192
45 #define CT_EV_NEGEND 0
48 * Level of status detail requested
50 #define CTD_COMMON 0 /* No additional detail */
51 #define CTD_FIXED 1 /* O(1) info */
52 #define CTD_ALL 2 /* O(n) info */
55 * Values for ctev_flags.
61 #define CTP_EV_CRITICAL 100
62 #define CTP_EV_INFO 101
63 #define CTP_COOKIE 102
65 #define CTS_NEWCT "cts_newct"
66 #define CTS_NEVID "cts_nevid"
68 typedef enum ctstate
{
69 CTS_OWNED
, /* contract is owned by a process */
70 CTS_INHERITED
, /* contract has been inherited by its parent */
71 CTS_ORPHAN
, /* contract has no parent */
72 CTS_DEAD
/* contract has been destroyed */
75 typedef enum ct_typeid
{
76 CTT_PROCESS
, /* process contract */
77 CTT_DEVICE
, /* device contract */
81 typedef struct ct_event
{
85 ct_typeid_t ctev_cttype
;
89 uint32_t ctev_goffset
;
94 typedef struct ct_status
{
97 ct_typeid_t ctst_type
;
106 uint_t ctst_critical
;
107 uint_t ctst_informative
;
108 uint64_t ctst_cookie
;
112 typedef struct ct_param
{
122 #endif /* _SYS_CONTRACT_H */