1175533Sru/*-
2175533Sru * Copyright (c) 1999 Kenneth D. Merry.
3175533Sru * All rights reserved.
4175533Sru *
5175533Sru * Redistribution and use in source and binary forms, with or without
6175533Sru * modification, are permitted provided that the following conditions
7175533Sru * are met:
8175533Sru * 1. Redistributions of source code must retain the above copyright
9175533Sru *    notice, this list of conditions, and the following disclaimer,
10175533Sru *    without modification, immediately at the beginning of the file.
11175533Sru * 2. The name of the author may not be used to endorse or promote products
12175533Sru *    derived from this software without specific prior written permission.
13175533Sru *
14175533Sru * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15175533Sru * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16175533Sru * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17175533Sru * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18175533Sru * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19175533Sru * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20175533Sru * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21175533Sru * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22175533Sru * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23175533Sru * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24175533Sru * SUCH DAMAGE.
25175533Sru *
26175533Sru * $FreeBSD$
27153618Sru */
28153618Sru
29153618Sru#ifndef _SYS_PTIO_H_
30153618Sru#define	_SYS_PTIO_H_
31165951Sjhb
32153618Sru#include <sys/ioccom.h>
33165951Sjhb
34165951Sjhb#define	PTIOCGETTIMEOUT	_IOR('T', 1, int)
35165951Sjhb#define	PTIOCSETTIMEOUT	_IOW('T', 2, int)
36153618Sru
37153618Sru#endif /* !_SYS_PTIO_H_ */
38153618Sru