1296510Smav/*-
2296510Smav * Copyright (c) 2016 Alexander Motin <mav@FreeBSD.org>
3296510Smav * All rights reserved.
4296510Smav *
5296510Smav * Redistribution and use in source and binary forms, with or without
6296510Smav * modification, are permitted provided that the following conditions
7296510Smav * are met:
8296510Smav * 1. Redistributions of source code must retain the above copyright
9296510Smav *    notice, this list of conditions and the following disclaimer.
10296510Smav * 2. Redistributions in binary form must reproduce the above copyright
11296510Smav *    notice, this list of conditions and the following disclaimer in the
12296510Smav *    documentation and/or other materials provided with the distribution.
13296510Smav *
14296510Smav * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND
15296510Smav * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16296510Smav * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17296510Smav * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE
18296510Smav * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19296510Smav * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20296510Smav * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21296510Smav * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22296510Smav * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23296510Smav * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24296510Smav * SUCH DAMAGE.
25296510Smav *
26296510Smav * $FreeBSD$
27296510Smav */
28296510Smav
29296510Smav#ifndef _OPENSOLARIS_SYS_CALLO_H_
30296510Smav#define	_OPENSOLARIS_SYS_CALLO_H_
31296510Smav
32296510Smav#include_next <sys/callout.h>
33296510Smav
34296510Smav#define	CALLOUT_REALTIME	0		/* realtime callout type */
35296510Smav#define	CALLOUT_NORMAL		1		/* normal callout type */
36296510Smav
37296510Smav#endif	/* !_OPENSOLARIS_SYS_CALLO_H_ */
38