159243Sobrien/*-
259243Sobrien * Copyright (c) 1999 Kenneth D. Merry.
359243Sobrien * All rights reserved.
459243Sobrien *
5167465Smp * Redistribution and use in source and binary forms, with or without
659243Sobrien * modification, are permitted provided that the following conditions
759243Sobrien * are met:
859243Sobrien * 1. Redistributions of source code must retain the above copyright
959243Sobrien *    notice, this list of conditions, and the following disclaimer,
1059243Sobrien *    without modification, immediately at the beginning of the file.
1159243Sobrien * 2. The name of the author may not be used to endorse or promote products
1259243Sobrien *    derived from this software without specific prior written permission.
1359243Sobrien *
1459243Sobrien * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
1559243Sobrien * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1659243Sobrien * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1759243Sobrien * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
1859243Sobrien * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1959243Sobrien * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2059243Sobrien * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2159243Sobrien * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2259243Sobrien * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2359243Sobrien * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2459243Sobrien * SUCH DAMAGE.
2559243Sobrien *
2659243Sobrien * $FreeBSD$
2759243Sobrien */
2859243Sobrien
2959243Sobrien#ifndef _SYS_PTIO_H_
3059243Sobrien#define	_SYS_PTIO_H_
3159243Sobrien
3259243Sobrien#include <sys/ioccom.h>
3359243Sobrien
3459243Sobrien#define	PTIOCGETTIMEOUT	_IOR('T', 1, int)
3559243Sobrien#define	PTIOCSETTIMEOUT	_IOW('T', 2, int)
3659243Sobrien
3759243Sobrien#endif /* !_SYS_PTIO_H_ */
3859243Sobrien