1219820Sjeff/*
2219820Sjeff * CDDL HEADER START
3219820Sjeff *
4219820Sjeff * The contents of this file are subject to the terms of the
5219820Sjeff * Common Development and Distribution License (the "License").
6219820Sjeff * You may not use this file except in compliance with the License.
7219820Sjeff *
8219820Sjeff * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9219820Sjeff * or http://www.opensolaris.org/os/licensing.
10219820Sjeff * See the License for the specific language governing permissions
11219820Sjeff * and limitations under the License.
12219820Sjeff *
13219820Sjeff * When distributing Covered Code, include this CDDL HEADER in each
14219820Sjeff * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15219820Sjeff * If applicable, add the following below this CDDL HEADER, with the
16219820Sjeff * fields enclosed by brackets "[]" replaced with your own identifying
17219820Sjeff * information: Portions Copyright [yyyy] [name of copyright owner]
18219820Sjeff *
19219820Sjeff * CDDL HEADER END
20219820Sjeff */
21
22/*
23 * Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
24 * Use is subject to license terms.
25 */
26
27#pragma ident	"%Z%%M%	%I%	%E% SMI"
28
29/*
30 * ASSERTION:
31 * 	Simple profile provider test.
32 *	Call simple profile with END profile.
33 *	Match expected output in tst.profend.d.out
34 *
35 *
36 * SECTION: profile Provider/tick-n probes
37 *
38 */
39
40#pragma D option quiet
41
42BEGIN
43{
44	i = 0;
45}
46
47profile:::tick-1sec
48{
49	i++;
50	trace(i);
51	exit(0);
52}
53
54dtrace:::END
55{
56	printf("\nI'm at END");
57}
58