1130812Smarcel/*
2130812Smarcel * CDDL HEADER START
3130812Smarcel *
4130812Smarcel * The contents of this file are subject to the terms of the
5130812Smarcel * Common Development and Distribution License (the "License").
6130812Smarcel * You may not use this file except in compliance with the License.
7130812Smarcel *
8130812Smarcel * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9130812Smarcel * or http://www.opensolaris.org/os/licensing.
10130812Smarcel * See the License for the specific language governing permissions
11130812Smarcel * and limitations under the License.
12130812Smarcel *
13130812Smarcel * When distributing Covered Code, include this CDDL HEADER in each
14130812Smarcel * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15130812Smarcel * If applicable, add the following below this CDDL HEADER, with the
16130812Smarcel * fields enclosed by brackets "[]" replaced with your own identifying
17130812Smarcel * information: Portions Copyright [yyyy] [name of copyright owner]
18130812Smarcel *
19130812Smarcel * CDDL HEADER END
20130812Smarcel */
21130812Smarcel
22130812Smarcel/*
23130812Smarcel * Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
24130812Smarcel * Use is subject to license terms.
25130812Smarcel */
26130812Smarcel
27130812Smarcel#pragma ident	"%Z%%M%	%I%	%E% SMI"
28130812Smarcel
29130812Smarcel#pragma D option bufsize=1000
30130812Smarcel#pragma D option bufpolicy=ring
31130812Smarcel#pragma D option statusrate=10ms
32130812Smarcel
33130812Smarcelfbt:::
34130812Smarcel{
35130812Smarcel	on = (timestamp / 1000000000) & 1;
36130812Smarcel}
37130812Smarcel
38130812Smarcelfbt:::entry
39130812Smarcel/on/
40130812Smarcel{
41130812Smarcel	trace(basename((char *)rand()));
42130812Smarcel}
43130812Smarcel
44130812Smarcelfbt:::entry
45130812Smarcel/on/
46130812Smarcel{
47130812Smarcel	trace(basename((char *)arg1));
48130812Smarcel}
49130812Smarcel
50130812Smarceltick-1sec
51130812Smarcel/n++ == 10/
52130812Smarcel{
53130812Smarcel	exit(0);
54130812Smarcel}
55130812Smarcel