GNU Octave  3.8.0
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Macros
kpty.cpp File Reference
#include "unix/kpty_p.h"
#include <sys/types.h>
#include <sys/ioctl.h>
#include <sys/time.h>
#include <sys/resource.h>
#include <sys/stat.h>
#include <sys/param.h>
#include <errno.h>
#include <fcntl.h>
#include <time.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <grp.h>
#include <termios.h>
#include <QtCore>
Include dependency graph for kpty.cpp:

Go to the source code of this file.

Macros

#define _tcgetattr(fd, ttmode)   ioctl(fd, TCGETS, (char *)ttmode)
#define _tcsetattr(fd, ttmode)   ioctl(fd, TCSETS, (char *)ttmode)
#define CTRL(x)   ((x) & 037)
#define TTY_GROUP   "tty"

Macro Definition Documentation

#define _tcgetattr (   fd,
  ttmode 
)    ioctl(fd, TCGETS, (char *)ttmode)

Definition at line 125 of file kpty.cpp.

Referenced by KPty::tcGetAttr().

#define _tcsetattr (   fd,
  ttmode 
)    ioctl(fd, TCSETS, (char *)ttmode)

Definition at line 135 of file kpty.cpp.

Referenced by KPty::tcSetAttr().

#define CTRL (   x)    ((x) & 037)

Definition at line 143 of file kpty.cpp.

#define TTY_GROUP   "tty"

Definition at line 146 of file kpty.cpp.

Referenced by KPty::open().