tty_flip.h 1.2 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3
#ifndef _LINUX_TTY_FLIP_H
#define _LINUX_TTY_FLIP_H

4
extern int tty_buffer_request_room(struct tty_port *port, size_t size);
5 6 7 8 9 10 11 12
extern int tty_insert_flip_string_flags(struct tty_port *port,
		const unsigned char *chars, const char *flags, size_t size);
extern int tty_insert_flip_string_fixed_flag(struct tty_port *port,
		const unsigned char *chars, char flag, size_t size);
extern int tty_prepare_flip_string(struct tty_port *port,
		unsigned char **chars, size_t size);
extern int tty_prepare_flip_string_flags(struct tty_port *port,
		unsigned char **chars, char **flags, size_t size);
J
Jiri Slaby 已提交
13
extern void tty_flip_buffer_push(struct tty_port *port);
14
void tty_schedule_flip(struct tty_struct *tty);
A
Alan Cox 已提交
15

J
Jiri Slaby 已提交
16
static inline int tty_insert_flip_char(struct tty_port *port,
17
					unsigned char ch, char flag)
L
Linus Torvalds 已提交
18
{
J
Jiri Slaby 已提交
19
	struct tty_buffer *tb = port->buf.tail;
20
	if (tb && tb->used < tb->size) {
A
Alan Cox 已提交
21 22 23
		tb->flag_buf_ptr[tb->used] = flag;
		tb->char_buf_ptr[tb->used++] = ch;
		return 1;
L
Linus Torvalds 已提交
24
	}
J
Jiri Slaby 已提交
25
	return tty_insert_flip_string_flags(port, &ch, &flag, 1);
L
Linus Torvalds 已提交
26 27
}

J
Jiri Slaby 已提交
28 29
static inline int tty_insert_flip_string(struct tty_port *port,
		const unsigned char *chars, size_t size)
30
{
J
Jiri Slaby 已提交
31
	return tty_insert_flip_string_fixed_flag(port, chars, TTY_NORMAL, size);
32 33
}

L
Linus Torvalds 已提交
34
#endif /* _LINUX_TTY_FLIP_H */