GNU Octave
3.8.0
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
|
#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>
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" |
#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 TTY_GROUP "tty" |
Definition at line 146 of file kpty.cpp.
Referenced by KPty::open().