XINU
tty.h
Go to the documentation of this file.
1 /* tty.h */
2 
3 #define TY_OBMINSP 20 /* Min space in buffer before */
4  /* processes awakened to write*/
5 #define TY_EBUFLEN 20 /* Size of echo queue */
6 
7 /* Size constants */
8 
9 #ifndef Ntty
10 #define Ntty 1 /* Number of serial tty lines */
11 #endif
12 #ifndef TY_IBUFLEN
13 #define TY_IBUFLEN 128 /* Num. chars in input queue */
14 #endif
15 #ifndef TY_OBUFLEN
16 #define TY_OBUFLEN 64 /* Num. chars in output queue */
17 #endif
18 
19 /* Mode constants for input and output modes */
20 
21 #define TY_IMRAW 'R' /* Raw input mode => no edits */
22 #define TY_IMCOOKED 'C' /* Cooked mode => line editing */
23 #define TY_IMCBREAK 'K' /* Honor echo, etc, no line edit*/
24 #define TY_OMRAW 'R' /* Raw output mode => no edits */
25 
26 struct ttycblk { /* Tty line control block */
27  char *tyihead; /* Next input char to read */
28  char *tyitail; /* Next slot for arriving char */
29  char tyibuff[TY_IBUFLEN]; /* Input buffer (holds one line)*/
30  sid32 tyisem; /* Input semaphore */
31  char *tyohead; /* Next output char to xmit */
32  char *tyotail; /* Next slot for outgoing char */
33  char tyobuff[TY_OBUFLEN]; /* Output buffer */
34  sid32 tyosem; /* Output semaphore */
35  char *tyehead; /* Next echo char to xmit */
36  char *tyetail; /* Next slot to deposit echo ch */
37  char tyebuff[TY_EBUFLEN]; /* Echo buffer */
38  char tyimode; /* Input mode raw/cbreak/cooked */
39  bool8 tyiecho; /* Is input echoed? */
40  bool8 tyieback; /* Do erasing backspace on echo?*/
41  bool8 tyevis; /* Echo control chars as ^X ? */
42  bool8 tyecrlf; /* Echo CR-LF for newline? */
43  bool8 tyicrlf; /* Map '\r' to '\n' on input? */
44  bool8 tyierase; /* Honor erase character? */
45  char tyierasec; /* Primary erase character */
46  char tyierasec2; /* Alternate erase character */
47  bool8 tyeof; /* Honor EOF character? */
48  char tyeofch; /* EOF character (usually ^D) */
49  bool8 tyikill; /* Honor line kill character? */
50  char tyikillc; /* Line kill character */
51  int32 tyicursor; /* Current cursor position */
52  bool8 tyoflow; /* Honor ostop/ostart? */
53  bool8 tyoheld; /* Output currently being held? */
54  char tyostop; /* Character that stops output */
55  char tyostart; /* Character that starts output */
56  bool8 tyocrlf; /* Output CR/LF for LF ? */
57  char tyifullc; /* Char to send when input full */
58 };
59 extern struct ttycblk ttytab[];
60 
61 /* Characters with meaning to the tty driver */
62 
63 #define TY_BACKSP '\b' /* Backspace character */
64 #define TY_BACKSP2 '\177' /* Alternate backspace char. */
65 #define TY_BELL '\07' /* Character for audible beep */
66 #define TY_EOFCH '\04' /* Control-D is EOF on input */
67 #define TY_BLANK ' ' /* Blank */
68 #define TY_NEWLINE '\n' /* Newline == line feed */
69 #define TY_RETURN '\r' /* Carriage return character */
70 #define TY_STOPCH '\023' /* Control-S stops output */
71 #define TY_STRTCH '\021' /* Control-Q restarts output */
72 #define TY_KILLCH '\025' /* Control-U is line kill */
73 #define TY_UPARROW '^' /* Used for control chars (^X) */
74 #define TY_FULLCH TY_BELL /* Char to echo when buffer full*/
75 
76 /* Tty control function codes */
77 
78 #define TC_NEXTC 3 /* Look ahead 1 character */
79 #define TC_MODER 4 /* Set input mode to raw */
80 #define TC_MODEC 5 /* Set input mode to cooked */
81 #define TC_MODEK 6 /* Set input mode to cbreak */
82 #define TC_ICHARS 8 /* Return number of input chars */
83 #define TC_ECHO 9 /* Turn on echo */
84 #define TC_NOECHO 10 /* Turn off echo */
bool8 tyocrlf
Definition: tty.h:56
#define TY_EBUFLEN
Definition: tty.h:5
bool8 tyiecho
Definition: tty.h:39
char tyeofch
Definition: tty.h:48
char tyierasec
Definition: tty.h:45
char tyifullc
Definition: tty.h:57
char tyibuff[TY_IBUFLEN]
Definition: tty.h:29
char tyierasec2
Definition: tty.h:46
bool8 tyicrlf
Definition: tty.h:43
bool8 tyieback
Definition: tty.h:40
bool8 tyoheld
Definition: tty.h:53
byte bool8
Boolean値
Definition: kernel.h:36
bool8 tyikill
Definition: tty.h:49
bool8 tyecrlf
Definition: tty.h:42
bool8 tyoflow
Definition: tty.h:52
Definition: tty.h:26
char * tyehead
Definition: tty.h:35
char tyobuff[TY_OBUFLEN]
Definition: tty.h:33
char tyostop
Definition: tty.h:54
char * tyetail
Definition: tty.h:36
char * tyohead
Definition: tty.h:31
bool8 tyevis
Definition: tty.h:41
char * tyihead
Definition: tty.h:27
int int32
符号あり32ビット整数(int)
Definition: kernel.h:11
#define TY_OBUFLEN
Definition: tty.h:16
struct ttycblk ttytab[]
Definition: ttyinit.c:11
char * tyotail
Definition: tty.h:32
char tyikillc
Definition: tty.h:50
char tyimode
Definition: tty.h:38
bool8 tyierase
Definition: tty.h:44
#define TY_IBUFLEN
Definition: tty.h:13
bool8 tyeof
Definition: tty.h:47
char tyebuff[TY_EBUFLEN]
Definition: tty.h:37
int32 tyicursor
Definition: tty.h:51
int32 sid32
セマフォID
Definition: kernel.h:22
char tyostart
Definition: tty.h:55
sid32 tyisem
Definition: tty.h:30
sid32 tyosem
Definition: tty.h:34
char * tyitail
Definition: tty.h:28