tty_flip.h 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. #ifndef _LINUX_TTY_FLIP_H
  2. #define _LINUX_TTY_FLIP_H
  3. extern int tty_buffer_request_room(struct tty_struct *tty, size_t size);
  4. extern int tty_insert_flip_string(struct tty_struct *tty, unsigned char *chars, size_t size);
  5. extern int tty_insert_flip_string_flags(struct tty_struct *tty, unsigned char *chars, char *flags, size_t size);
  6. extern int tty_prepare_flip_string(struct tty_struct *tty, unsigned char **chars, size_t size);
  7. extern int tty_prepare_flip_string_flags(struct tty_struct *tty, unsigned char **chars, char **flags, size_t size);
  8. #ifdef INCLUDE_INLINE_FUNCS
  9. #define _INLINE_ extern
  10. #else
  11. #define _INLINE_ static __inline__
  12. #endif
  13. _INLINE_ int tty_insert_flip_char(struct tty_struct *tty,
  14. unsigned char ch, char flag)
  15. {
  16. struct tty_buffer *tb = tty->buf.tail;
  17. if (tb && tb->active && tb->used < tb->size) {
  18. tb->flag_buf_ptr[tb->used] = flag;
  19. tb->char_buf_ptr[tb->used++] = ch;
  20. return 1;
  21. }
  22. return tty_insert_flip_string_flags(tty, &ch, &flag, 1);
  23. }
  24. _INLINE_ void tty_schedule_flip(struct tty_struct *tty)
  25. {
  26. unsigned long flags;
  27. spin_lock_irqsave(&tty->buf.lock, flags);
  28. if (tty->buf.tail != NULL) {
  29. tty->buf.tail->active = 0;
  30. tty->buf.tail->commit = tty->buf.tail->used;
  31. }
  32. spin_unlock_irqrestore(&tty->buf.lock, flags);
  33. schedule_delayed_work(&tty->buf.work, 1);
  34. }
  35. #undef _INLINE_
  36. #endif /* _LINUX_TTY_FLIP_H */