Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Data Structures | Variables
tty.c File Reference
#include <errno.h>
#include <fcntl.h>
#include <termios.h>
#include "chan_user.h"
#include <os.h>
#include <um_malloc.h>

Go to the source code of this file.

Data Structures

struct  tty_chan
 

Variables

struct chan_ops tty_ops
 

Variable Documentation

struct chan_ops tty_ops
Initial value:
= {
.type = "tty",
.init = tty_chan_init,
.open = tty_open,
.close = generic_close,
.read = generic_read,
.write = generic_write,
.console_write = generic_console_write,
.window_size = generic_window_size,
.free = generic_free,
.winch = 0,
}

Definition at line 70 of file tty.c.