git://scm.lunaixsky.com
/
lunaix-os.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
24d088fbd3f6665580e53fe8c4e32112292b319c
[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
size_t wnd_start;
13
size_t lines;
14
};
15
16
#endif /* __LUNAIX_CONSOLE_H */