feat: new syscall: sigpending, sigsuspend
[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/fifobuf.h>
5 #include <lunaix/timer.h>
6
7 struct console
8 {
9     struct lx_timer* flush_timer;
10     struct fifo_buffer buffer;
11     unsigned int erd_pos;
12     unsigned int lines;
13 };
14
15 #endif /* __LUNAIX_CONSOLE_H */