edb348833aaacfa1176e502ad38875fd0b2717abAdam H. Leventhal/*
edb348833aaacfa1176e502ad38875fd0b2717abAdam H. Leventhal * CDDL HEADER START
edb348833aaacfa1176e502ad38875fd0b2717abAdam H. Leventhal *
edb348833aaacfa1176e502ad38875fd0b2717abAdam H. Leventhal * This file and its contents are supplied under the terms of the
edb348833aaacfa1176e502ad38875fd0b2717abAdam H. Leventhal * Common Development and Distribution License ("CDDL"), version 1.0.
edb348833aaacfa1176e502ad38875fd0b2717abAdam H. Leventhal * You may only use this file in accordance with the terms of version
edb348833aaacfa1176e502ad38875fd0b2717abAdam H. Leventhal * 1.0 of the CDDL.
edb348833aaacfa1176e502ad38875fd0b2717abAdam H. Leventhal *
edb348833aaacfa1176e502ad38875fd0b2717abAdam H. Leventhal * A full copy of the text of the CDDL should have accompanied this
edb348833aaacfa1176e502ad38875fd0b2717abAdam H. Leventhal * source. A copy of the CDDL is also available via the Internet at
edb348833aaacfa1176e502ad38875fd0b2717abAdam H. Leventhal * http://www.illumos.org/license/CDDL.
edb348833aaacfa1176e502ad38875fd0b2717abAdam H. Leventhal *
edb348833aaacfa1176e502ad38875fd0b2717abAdam H. Leventhal * CDDL HEADER END
edb348833aaacfa1176e502ad38875fd0b2717abAdam H. Leventhal */
edb348833aaacfa1176e502ad38875fd0b2717abAdam H. Leventhal
edb348833aaacfa1176e502ad38875fd0b2717abAdam H. Leventhal/*
edb348833aaacfa1176e502ad38875fd0b2717abAdam H. Leventhal * Copyright (c) 2012 by Delphix. All rights reserved.
edb348833aaacfa1176e502ad38875fd0b2717abAdam H. Leventhal */
edb348833aaacfa1176e502ad38875fd0b2717abAdam H. Leventhal
edb348833aaacfa1176e502ad38875fd0b2717abAdam H. Leventhal#include "lazyprobe.h"
edb348833aaacfa1176e502ad38875fd0b2717abAdam H. Leventhal
edb348833aaacfa1176e502ad38875fd0b2717abAdam H. Leventhalint
edb348833aaacfa1176e502ad38875fd0b2717abAdam H. Leventhalmain(int argc, char **argv)
edb348833aaacfa1176e502ad38875fd0b2717abAdam H. Leventhal{
edb348833aaacfa1176e502ad38875fd0b2717abAdam H. Leventhal for (;;) {
edb348833aaacfa1176e502ad38875fd0b2717abAdam H. Leventhal LAZYPROBE_FIRE();
edb348833aaacfa1176e502ad38875fd0b2717abAdam H. Leventhal }
edb348833aaacfa1176e502ad38875fd0b2717abAdam H. Leventhal
edb348833aaacfa1176e502ad38875fd0b2717abAdam H. Leventhal return (0);
edb348833aaacfa1176e502ad38875fd0b2717abAdam H. Leventhal}