The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/sys/ioctl_compat.h

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /*-
    2  * Copyright (c) 1990, 1993
    3  *      The Regents of the University of California.  All rights reserved.
    4  * (c) UNIX System Laboratories, Inc.
    5  * All or some portions of this file are derived from material licensed
    6  * to the University of California by American Telephone and Telegraph
    7  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
    8  * the permission of UNIX System Laboratories, Inc.
    9  *
   10  * Redistribution and use in source and binary forms, with or without
   11  * modification, are permitted provided that the following conditions
   12  * are met:
   13  * 1. Redistributions of source code must retain the above copyright
   14  *    notice, this list of conditions and the following disclaimer.
   15  * 2. Redistributions in binary form must reproduce the above copyright
   16  *    notice, this list of conditions and the following disclaimer in the
   17  *    documentation and/or other materials provided with the distribution.
   18  * 4. Neither the name of the University nor the names of its contributors
   19  *    may be used to endorse or promote products derived from this software
   20  *    without specific prior written permission.
   21  *
   22  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
   23  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   24  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   25  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
   26  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
   27  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
   28  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
   29  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
   30  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
   31  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
   32  * SUCH DAMAGE.
   33  *
   34  *      @(#)ioctl_compat.h      8.4 (Berkeley) 1/21/94
   35  * $FreeBSD: releng/9.0/sys/sys/ioctl_compat.h 196884 2009-09-06 09:39:40Z ed $
   36  */
   37 
   38 #ifndef _SYS_IOCTL_COMPAT_H_
   39 #define _SYS_IOCTL_COMPAT_H_
   40 
   41 #ifndef COMPAT_43TTY
   42 #error "Definitions not available without TTY ioctl compat."
   43 #endif
   44 
   45 struct tchars {
   46         char    t_intrc;        /* interrupt */
   47         char    t_quitc;        /* quit */
   48         char    t_startc;       /* start output */
   49         char    t_stopc;        /* stop output */
   50         char    t_eofc;         /* end-of-file */
   51         char    t_brkc;         /* input delimiter (like nl) */
   52 };
   53 
   54 struct ltchars {
   55         char    t_suspc;        /* stop process signal */
   56         char    t_dsuspc;       /* delayed stop process signal */
   57         char    t_rprntc;       /* reprint line */
   58         char    t_flushc;       /* flush output (toggles) */
   59         char    t_werasc;       /* word erase */
   60         char    t_lnextc;       /* literal next character */
   61 };
   62 
   63 /*
   64  * Structure for TIOCGETP and TIOCSETP ioctls.
   65  */
   66 struct sgttyb {
   67         char    sg_ispeed;              /* input speed */
   68         char    sg_ospeed;              /* output speed */
   69         char    sg_erase;               /* erase character */
   70         char    sg_kill;                /* kill character */
   71         short   sg_flags;               /* mode flags */
   72 };
   73 
   74 #define OTIOCGETD       _IOR('t', 0, int)       /* get line discipline */
   75 #define OTIOCSETD       _IOW('t', 1, int)       /* set line discipline */
   76 #define TIOCHPCL         _IO('t', 2)            /* hang up on last close */
   77 #define TIOCGETP        _IOR('t', 8, struct sgttyb) /* get parameters */
   78 #define TIOCSETP        _IOW('t', 9, struct sgttyb) /* set parameters */
   79 #define TIOCSETN        _IOW('t',10, struct sgttyb) /* as above, but no flush */
   80 #define TIOCSETC        _IOW('t',17, struct tchars) /* set special characters */
   81 #define TIOCGETC        _IOR('t',18, struct tchars) /* get special characters */
   82 #define         TANDEM          0x00000001      /* send stopc on out q full */
   83 #define         CBREAK          0x00000002      /* half-cooked mode */
   84 #define         LCASE           0x00000004      /* simulate lower case */
   85 #define         ECHO            0x00000008      /* echo input */
   86 #define         CRMOD           0x00000010      /* map \r to \r\n on output */
   87 #define         RAW             0x00000020      /* no i/o processing */
   88 #define         ODDP            0x00000040      /* get/send odd parity */
   89 #define         EVENP           0x00000080      /* get/send even parity */
   90 #define         ANYP            0x000000c0      /* get any parity/send none */
   91 #define         NLDELAY         0x00000300      /* \n delay */
   92 #define                 NL0     0x00000000
   93 #define                 NL1     0x00000100      /* tty 37 */
   94 #define                 NL2     0x00000200      /* vt05 */
   95 #define                 NL3     0x00000300
   96 #define         TBDELAY         0x00000c00      /* horizontal tab delay */
   97 #define                 TAB0    0x00000000
   98 #define                 TAB1    0x00000400      /* tty 37 */
   99 #define                 TAB2    0x00000800
  100 #define         XTABS           0x00000c00      /* expand tabs on output */
  101 #define         CRDELAY         0x00003000      /* \r delay */
  102 #define                 CR0     0x00000000
  103 #define                 CR1     0x00001000      /* tn 300 */
  104 #define                 CR2     0x00002000      /* tty 37 */
  105 #define                 CR3     0x00003000      /* concept 100 */
  106 #define         VTDELAY         0x00004000      /* vertical tab delay */
  107 #define                 FF0     0x00000000
  108 #define                 FF1     0x00004000      /* tty 37 */
  109 #define         BSDELAY         0x00008000      /* \b delay */
  110 #define                 BS0     0x00000000
  111 #define                 BS1     0x00008000
  112 #define         ALLDELAY        (NLDELAY|TBDELAY|CRDELAY|VTDELAY|BSDELAY)
  113 #define         CRTBS           0x00010000      /* do backspacing for crt */
  114 #define         PRTERA          0x00020000      /* \ ... / erase */
  115 #define         CRTERA          0x00040000      /* " \b " to wipe out char */
  116 #define         TILDE           0x00080000      /* hazeltine tilde kludge */
  117 #define         MDMBUF          0x00100000      /*start/stop output on carrier*/
  118 #define         LITOUT          0x00200000      /* literal output */
  119 #define         TOSTOP          0x00400000      /*SIGSTOP on background output*/
  120 #define         FLUSHO          0x00800000      /* flush output to terminal */
  121 #define         NOHANG          0x01000000      /* (no-op) was no SIGHUP on carrier drop */
  122 #define         L001000         0x02000000
  123 #define         CRTKIL          0x04000000      /* kill line with " \b " */
  124 #define         PASS8           0x08000000
  125 #define         CTLECH          0x10000000      /* echo control chars as ^X */
  126 #define         PENDIN          0x20000000      /* tp->t_rawq needs reread */
  127 #define         DECCTQ          0x40000000      /* only ^Q starts after ^S */
  128 #define         NOFLSH          0x80000000      /* no output flush on signal */
  129 #define OTIOCCONS        _IO('t', 98)   /* for hp300 -- sans int arg */
  130 #define TIOCGLTC        _IOR('t', 116,struct ltchars) /* get special chars */
  131 #define TIOCSLTC        _IOW('t', 117,struct ltchars) /* set special chars */
  132 #define TIOCLGET        _IOR('t', 124, int)     /* get local modes */
  133 #define         LCRTBS          (CRTBS>>16)
  134 #define         LPRTERA         (PRTERA>>16)
  135 #define         LCRTERA         (CRTERA>>16)
  136 #define         LTILDE          (TILDE>>16)
  137 #define         LMDMBUF         (MDMBUF>>16)
  138 #define         LLITOUT         (LITOUT>>16)
  139 #define         LTOSTOP         (TOSTOP>>16)
  140 #define         LFLUSHO         (FLUSHO>>16)
  141 #define         LNOHANG         (NOHANG>>16)
  142 #define         LCRTKIL         (CRTKIL>>16)
  143 #define         LPASS8          (PASS8>>16)
  144 #define         LCTLECH         (CTLECH>>16)
  145 #define         LPENDIN         (PENDIN>>16)
  146 #define         LDECCTQ         (DECCTQ>>16)
  147 #define         LNOFLSH         (NOFLSH>>16)
  148 #define TIOCLSET        _IOW('t', 125, int)     /* set entire local mode word */
  149 #define TIOCLBIC        _IOW('t', 126, int)     /* bic local mode bits */
  150 #define TIOCLBIS        _IOW('t', 127, int)     /* bis local mode bits */
  151 
  152 #endif /* !_SYS_IOCTL_COMPAT_H_ */

Cache object: 2751f3c17e2a5b05c7cbba693b0c31e5


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.