1*d355fd58SJohn Birrell /* 2*d355fd58SJohn Birrell * Copyright (C) 2008 John Birrell <jb@freebsd.org> 3*d355fd58SJohn Birrell * All rights reserved. 4*d355fd58SJohn Birrell * 5*d355fd58SJohn Birrell * Redistribution and use in source and binary forms, with or without 6*d355fd58SJohn Birrell * modification, are permitted provided that the following conditions 7*d355fd58SJohn Birrell * are met: 8*d355fd58SJohn Birrell * 1. Redistributions of source code must retain the above copyright 9*d355fd58SJohn Birrell * notice, this list of conditions and the following disclaimer. 10*d355fd58SJohn Birrell * 2. Redistributions in binary form must reproduce the above copyright 11*d355fd58SJohn Birrell * notice, this list of conditions and the following disclaimer in the 12*d355fd58SJohn Birrell * documentation and/or other materials provided with the distribution. 13*d355fd58SJohn Birrell * 14*d355fd58SJohn Birrell * THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND 15*d355fd58SJohn Birrell * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 16*d355fd58SJohn Birrell * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 17*d355fd58SJohn Birrell * ARE DISCLAIMED. IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE 18*d355fd58SJohn Birrell * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 19*d355fd58SJohn Birrell * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 20*d355fd58SJohn Birrell * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 21*d355fd58SJohn Birrell * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 22*d355fd58SJohn Birrell * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 23*d355fd58SJohn Birrell * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 24*d355fd58SJohn Birrell * SUCH DAMAGE. 25*d355fd58SJohn Birrell * 26*d355fd58SJohn Birrell */ 27*d355fd58SJohn Birrell 28*d355fd58SJohn Birrell #ifndef _COMPAT_OPENSOLARIS_DTRACE_H_ 29*d355fd58SJohn Birrell #define _COMPAT_OPENSOLARIS_DTRACE_H_ 30*d355fd58SJohn Birrell 31*d355fd58SJohn Birrell #define ps_prochandle proc_handle 32*d355fd58SJohn Birrell 33*d355fd58SJohn Birrell #include_next <dtrace.h> 34*d355fd58SJohn Birrell 35*d355fd58SJohn Birrell #endif 36