|
RTEMS CPU Kit with SuperCore
4.10.99.0
|
00001 /*- 00002 * Copyright (c) 1982, 1986, 1990, 1993, 1994 00003 * The Regents of the University of California. All rights reserved. 00004 * (c) UNIX System Laboratories, Inc. 00005 * All or some portions of this file are derived from material licensed 00006 * to the University of California by American Telephone and Telegraph 00007 * Co. or Unix System Laboratories, Inc. and are reproduced herein with 00008 * the permission of UNIX System Laboratories, Inc. 00009 * 00010 * Redistribution and use in source and binary forms, with or without 00011 * modification, are permitted provided that the following conditions 00012 * are met: 00013 * 1. Redistributions of source code must retain the above copyright 00014 * notice, this list of conditions and the following disclaimer. 00015 * 2. Redistributions in binary form must reproduce the above copyright 00016 * notice, this list of conditions and the following disclaimer in the 00017 * documentation and/or other materials provided with the distribution. 00018 * 4. Neither the name of the University nor the names of its contributors 00019 * may be used to endorse or promote products derived from this software 00020 * without specific prior written permission. 00021 * 00022 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 00023 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 00024 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 00025 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 00026 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 00027 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 00028 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 00029 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 00030 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 00031 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 00032 * SUCH DAMAGE. 00033 * 00034 * @(#)ioctl.h 8.6 (Berkeley) 3/28/94 00035 * $FreeBSD: src/sys/sys/ioctl.h,v 1.13 2004/06/11 11:16:26 phk Exp $ 00036 */ 00037 00038 00039 #ifndef _SYS_IOCTL_H_ 00040 #define _SYS_IOCTL_H_ 00041 00042 #include <sys/ttycom.h> 00043 00044 /* 00045 * Pun for SunOS prior to 3.2. SunOS 3.2 and later support TIOCGWINSZ 00046 * and TIOCSWINSZ (yes, even 3.2-3.5, the fact that it wasn't documented 00047 * notwithstanding). 00048 */ 00049 struct ttysize { 00050 unsigned short ts_lines; 00051 unsigned short ts_cols; 00052 unsigned short ts_xxx; 00053 unsigned short ts_yyy; 00054 }; 00055 #define TIOCGSIZE TIOCGWINSZ 00056 #define TIOCSSIZE TIOCSWINSZ 00057 00058 #include <sys/ioccom.h> 00059 00060 #include <sys/filio.h> 00061 #include <sys/sockio.h> 00062 00063 #endif /* !_SYS_IOCTL_H_ */
1.7.5