Deleted Added
full compact
tty.h (41086) tty.h (41087)
1/*-
2 * Copyright (c) 1982, 1986, 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.

--- 22 unchanged lines hidden (view full) ---

31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * SUCH DAMAGE.
37 *
38 * @(#)tty.h 8.6 (Berkeley) 1/21/94
1/*-
2 * Copyright (c) 1982, 1986, 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.

--- 22 unchanged lines hidden (view full) ---

31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * SUCH DAMAGE.
37 *
38 * @(#)tty.h 8.6 (Berkeley) 1/21/94
39 * $Id: tty.h,v 1.42 1998/06/07 17:13:04 dfr Exp $
39 * $Id: tty.h,v 1.43 1998/11/11 10:04:13 truckman Exp $
40 */
41
42#ifndef _SYS_TTY_H_
43#define _SYS_TTY_H_
44
45#include <sys/termios.h>
46#include <sys/select.h> /* For struct selinfo. */
47

--- 26 unchanged lines hidden (view full) ---

74 long t_outcc; /* Output queue statistics. */
75 int t_line; /* Interface to device drivers. */
76 dev_t t_dev; /* Device. */
77 int t_state; /* Device and driver (TS*) state. */
78 int t_flags; /* Tty flags. */
79 int t_timeout; /* Timeout for ttywait() */
80 struct pgrp *t_pgrp; /* Foreground process group. */
81 struct session *t_session; /* Enclosing session. */
40 */
41
42#ifndef _SYS_TTY_H_
43#define _SYS_TTY_H_
44
45#include <sys/termios.h>
46#include <sys/select.h> /* For struct selinfo. */
47

--- 26 unchanged lines hidden (view full) ---

74 long t_outcc; /* Output queue statistics. */
75 int t_line; /* Interface to device drivers. */
76 dev_t t_dev; /* Device. */
77 int t_state; /* Device and driver (TS*) state. */
78 int t_flags; /* Tty flags. */
79 int t_timeout; /* Timeout for ttywait() */
80 struct pgrp *t_pgrp; /* Foreground process group. */
81 struct session *t_session; /* Enclosing session. */
82 struct sigio *t_sigio; /* information for SIGIO */
82 struct sigio *t_sigio; /* Information for async I/O. */
83 struct selinfo t_rsel; /* Tty read/oob select. */
84 struct selinfo t_wsel; /* Tty write select. */
85 struct termios t_termios; /* Termios state. */
86 struct winsize t_winsize; /* Window size. */
87 /* Start output. */
88 void (*t_oproc) __P((struct tty *));
89 /* Stop output. */
90 void (*t_stop) __P((struct tty *, int));

--- 184 unchanged lines hidden ---
83 struct selinfo t_rsel; /* Tty read/oob select. */
84 struct selinfo t_wsel; /* Tty write select. */
85 struct termios t_termios; /* Termios state. */
86 struct winsize t_winsize; /* Window size. */
87 /* Start output. */
88 void (*t_oproc) __P((struct tty *));
89 /* Stop output. */
90 void (*t_stop) __P((struct tty *, int));

--- 184 unchanged lines hidden ---