diff options
Diffstat (limited to 'include/linux/tty.h')
-rw-r--r-- | include/linux/tty.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/linux/tty.h b/include/linux/tty.h index bb4576085203..deaba9ec5004 100644 --- a/include/linux/tty.h +++ b/include/linux/tty.h | |||
@@ -338,6 +338,12 @@ extern struct tty_struct *get_current_tty(void); | |||
338 | 338 | ||
339 | extern struct mutex tty_mutex; | 339 | extern struct mutex tty_mutex; |
340 | 340 | ||
341 | extern void tty_write_unlock(struct tty_struct *tty); | ||
342 | extern int tty_write_lock(struct tty_struct *tty, int ndelay); | ||
343 | #define tty_is_writelocked(tty) (mutex_is_locked(&tty->atomic_write_lock)) | ||
344 | |||
345 | |||
346 | |||
341 | /* n_tty.c */ | 347 | /* n_tty.c */ |
342 | extern struct tty_ldisc tty_ldisc_N_TTY; | 348 | extern struct tty_ldisc tty_ldisc_N_TTY; |
343 | 349 | ||