1*e04145d0Seschrock/*
2*e04145d0Seschrock * CDDL HEADER START
3*e04145d0Seschrock *
4*e04145d0Seschrock * The contents of this file are subject to the terms of the
5*e04145d0Seschrock * Common Development and Distribution License (the "License").
6*e04145d0Seschrock * You may not use this file except in compliance with the License.
7*e04145d0Seschrock *
8*e04145d0Seschrock * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9*e04145d0Seschrock * or http://www.opensolaris.org/os/licensing.
10*e04145d0Seschrock * See the License for the specific language governing permissions
11*e04145d0Seschrock * and limitations under the License.
12*e04145d0Seschrock *
13*e04145d0Seschrock * When distributing Covered Code, include this CDDL HEADER in each
14*e04145d0Seschrock * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15*e04145d0Seschrock * If applicable, add the following below this CDDL HEADER, with the
16*e04145d0Seschrock * fields enclosed by brackets "[]" replaced with your own identifying
17*e04145d0Seschrock * information: Portions Copyright [yyyy] [name of copyright owner]
18*e04145d0Seschrock *
19*e04145d0Seschrock * CDDL HEADER END
20*e04145d0Seschrock */
21*e04145d0Seschrock/*
22*e04145d0Seschrock * Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
23*e04145d0Seschrock * Use is subject to license terms.
24*e04145d0Seschrock */
25*e04145d0Seschrock
26*e04145d0Seschrock#pragma D depends_on module unix
27*e04145d0Seschrock
28*e04145d0Seschrocktypedef struct syseventinfo {
29*e04145d0Seschrock	string	se_class;		/* event class */
30*e04145d0Seschrock	string	se_subclass;		/* event subclass */
31*e04145d0Seschrock	string	se_publisher;		/* event publisher */
32*e04145d0Seschrock} syseventinfo_t;
33*e04145d0Seschrock
34*e04145d0Seschrock#pragma D binding "1.0" translator
35*e04145d0Seschrocktranslator syseventinfo_t < sysevent_impl_t *ev > {
36*e04145d0Seschrock	se_class = stringof(@SE_CLASS_NAME@(ev));
37*e04145d0Seschrock	se_subclass = stringof(@SE_SUBCLASS_NAME@(ev));
38*e04145d0Seschrock	se_publisher = stringof(@SE_PUB_NAME@(ev));
39*e04145d0Seschrock};
40*e04145d0Seschrock
41*e04145d0Seschrocktypedef struct syseventchaninfo {
42*e04145d0Seschrock	string	ec_name;		/* channel name, or NULL if default */
43*e04145d0Seschrock} syseventchaninfo_t;
44*e04145d0Seschrock
45*e04145d0Seschrock#pragma D binding "1.0" translator
46*e04145d0Seschrocktranslator syseventchaninfo_t < evch_bind_t *bind > {
47*e04145d0Seschrock	ec_name = (bind ? stringof(bind->bd_channel->ch_name) : NULL);
48*e04145d0Seschrock};
49