1210753Srpaulo#
2210753Srpaulo# CDDL HEADER START
3210753Srpaulo#
4210753Srpaulo# The contents of this file are subject to the terms of the
5210753Srpaulo# Common Development and Distribution License (the "License").
6210753Srpaulo# You may not use this file except in compliance with the License.
7210753Srpaulo#
8210753Srpaulo# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9210753Srpaulo# or http://www.opensolaris.org/os/licensing.
10210753Srpaulo# See the License for the specific language governing permissions
11210753Srpaulo# and limitations under the License.
12210753Srpaulo#
13210753Srpaulo# When distributing Covered Code, include this CDDL HEADER in each
14210753Srpaulo# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15210753Srpaulo# If applicable, add the following below this CDDL HEADER, with the
16210753Srpaulo# fields enclosed by brackets "[]" replaced with your own identifying
17210753Srpaulo# information: Portions Copyright [yyyy] [name of copyright owner]
18210753Srpaulo#
19210753Srpaulo# CDDL HEADER END
20210753Srpaulo#
21210753Srpaulo
22210753Srpaulo#
23210753Srpaulo# Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
24210753Srpaulo# Use is subject to license terms.
25210753Srpaulo#
26210753Srpaulo
27210753Srpauloif [ $# != 1 ]; then
28210753Srpaulo	echo expected one argument: '<'dtrace-path'>'
29210753Srpaulo	exit 2
30210753Srpaulofi
31210753Srpaulo
32210753Srpaulodtrace=$1
33210753Srpaulo
34210753Srpaulo$dtrace -ln 'syscall::*$1:entry' read | awk '{print $(NF-1),$NF}' | sort
35210753Srpaulo$dtrace -ln 'syscall::$1*:entry' read | awk '{print $(NF-1),$NF}' | sort
36210753Srpaulo$dtrace -ln 'syscall::re$1*:entry' ad | awk '{print $(NF-1),$NF}' | sort
37210753Srpaulo$dtrace -ln 'syscall::$1l*:entry' read | awk '{print $(NF-1),$NF}' | sort
38210753Srpaulo$dtrace -ln 'syscall::p$1[0-9][0-9]:entry' read | awk '{print $(NF-1),$NF}' | \
39210753Srpaulo sort
40210753Srpaulo
41210753Srpauloexit $status
42