1237834Smm/*
2237834Smm * CDDL HEADER START
3237834Smm *
4237834Smm * The contents of this file are subject to the terms of the
5237834Smm * Common Development and Distribution License (the "License").
6237834Smm * You may not use this file except in compliance with the License.
7237834Smm *
8237834Smm * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9237834Smm * or http://www.opensolaris.org/os/licensing.
10237834Smm * See the License for the specific language governing permissions
11237834Smm * and limitations under the License.
12237834Smm *
13237834Smm * When distributing Covered Code, include this CDDL HEADER in each
14237834Smm * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15237834Smm * If applicable, add the following below this CDDL HEADER, with the
16237834Smm * fields enclosed by brackets "[]" replaced with your own identifying
17237834Smm * information: Portions Copyright [yyyy] [name of copyright owner]
18237834Smm *
19237834Smm * CDDL HEADER END
20237834Smm */
21237834Smm
22237834Smm/*
23237834Smm * Copyright (c) 2011, Joyent, Inc. All rights reserved.
24237834Smm */
25237834Smm
26237834Smm#pragma D option quiet
27237834Smm
28237834Smmint i;
29237834Smm
30237834Smmtick-10ms
31237834Smm/i < 100/
32237834Smm{
33237834Smm	@[i] = llquantize(i, 10, 1, 2, 10, 150);
34237834Smm	@[i] = llquantize(i + 1, 10, 1, 2, 10, 150);
35237834Smm	@[i] = llquantize(i + 2, 10, 1, 2, 10, 150);
36237834Smm	@[i] = llquantize(i + 3, 10, 1, 2, 10, 150);
37237834Smm	i++;
38237834Smm}
39237834Smm
40237834Smmtick-10ms
41237834Smm/i == 100/
42237834Smm{
43237834Smm	exit(0);
44237834Smm}
45237834Smm
46237834SmmEND
47237834Smm{
48237834Smm	trunc(@, 5);
49237834Smm}
50