1266989Smarkj#! /usr/bin/ksh
2266989Smarkj#
3266989Smarkj#
4266989Smarkj# This file and its contents are supplied under the terms of the
5266989Smarkj# Common Development and Distribution License ("CDDL"), version 1.0.
6266989Smarkj# You may only use this file in accordance with the terms of version
7266989Smarkj# 1.0 of the CDDL.
8266989Smarkj#
9266989Smarkj# A full copy of the text of the CDDL should have accompanied this
10266989Smarkj# source.  A copy of the CDDL is also available via the Internet at
11266989Smarkj# http://www.illumos.org/license/CDDL.
12266989Smarkj#
13266989Smarkj
14266989Smarkj#
15266989Smarkj# Copyright (c) 2013 Joyent, Inc. All rights reserved.
16266989Smarkj#
17266989Smarkj
18266989Smarkj#
19266989Smarkj# While it's hard to be completely certain that a type of the name we want
20266989Smarkj# doesn't exist, we're going to try to pick a name which is rather
21266989Smarkj# unique. This time we're also going to use the pid$target alias.
22266989Smarkj#
23266989Smarkj
24266989Smarkjif [ $# != 1 ]; then
25266989Smarkj        echo expected one argument: '<'dtrace-path'>'
26266989Smarkj        exit 2
27266989Smarkjfi
28266989Smarkj
29266989Smarkjdtrace=$1
30266989Smarkjt="season_8_mountain_of_madness_t"
31266989Smarkjpid=$$
32266989Smarkj
33266989Smarkjrc=`$dtrace -n "BEGIN{ trace(pid`$t)0); }"` -p $pid
34266989Smarkj
35266989Smarkjexit $rc
36