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