e5eaa34b940ad7c9ce1295250858918639bca89d
[lunaix-os.git] / lunaix-os / includes / lunaix / tty / console.h
1 #ifndef __LUNAIX_CONSOLE_H
2 #define __LUNAIX_CONSOLE_H
3
4 #include <lunaix/ds/fifo.h>
5 #include <lunaix/timer.h>
6
7 struct console
8 {
9     struct lx_timer* flush_timer;
10     struct fifo_buf output;
11     struct fifo_buf input;
12     unsigned int erd_pos;
13     unsigned int lines;
14 };
15
16 #endif /* __LUNAIX_CONSOLE_H */