summaryrefslogtreecommitdiff
path: root/sys/kern/tty.c
Commit message (Expand)AuthorAgeFilesLines
* Improve my last commit: use a separate condvar to serialize.Ed Schouten2009-06-231-2/+4
* Use dcdwait to block threads to serialize writes.Ed Schouten2009-06-231-2/+3
* Improve nested jail awareness of devfs by handling credentials.Ed Schouten2009-06-201-7/+0
* Perform some more cleanups to in-kernel session handling.Ed Schouten2009-06-151-1/+1
* Make tcsetsid(3) work on revoked TTYs.Ed Schouten2009-06-151-3/+6
* Revert my previous change, because it reintroduces an old regression.Ed Schouten2009-06-121-7/+7
* Prevent yet another staircase effect bug in the console device.Ed Schouten2009-06-121-7/+7
* Adapt vfs kqfilter to the shared vnode lock used by zfs write vop. UseKonstantin Belousov2009-06-101-2/+2
* Do not dereference vp->v_rdev without holding any of dev_mtx or vnodeKonstantin Belousov2009-06-081-8/+20
* Last minute TTY API change: remove mutex argument from tty_alloc().Ed Schouten2009-05-291-1/+8
* Get rid of M_TEMP.Ed Schouten2009-05-261-2/+2
* Block when initially opening a TTY multiple times.Ed Schouten2009-05-241-5/+11
* - Implement a lockless file descriptor lookup algorithm inJeff Roberson2009-05-141-4/+7
* Remove unneeded check for SESS_LEADER().Ed Schouten2009-05-041-1/+1
* Fix tty_wait_background() to comply with standards.Ed Schouten2009-04-081-8/+16
* Improve my previous changes to the TTY code: also remove memcpy().Ed Schouten2009-03-011-5/+5
* Replace bcopy() calls inside the TTY layer with memcpy()/strlcpy().Ed Schouten2009-02-281-7/+7
* Serialize write() calls on TTYs.Ed Schouten2009-02-111-6/+24
* Don't leave the console TTY constantly open.Ed Schouten2009-02-051-31/+40
* Slightly improve the design of the TTY buffer.Ed Schouten2009-02-031-3/+0
* Use the proper flag to let kern.ttys be executed without Giant.Ed Schouten2009-01-261-1/+1
* Mark kern.ttys as MPSAFE.Ed Schouten2009-01-241-1/+1
* Fix a corner case in my previous commit.Ed Schouten2009-01-021-1/+2
* Don't let /dev/console be revoked if the TTY below is being closed.Ed Schouten2009-01-021-0/+7
* Let wchan names more closely match pre-MPSAFE TTY behaviour.Ed Schouten2008-12-201-3/+3
* Further beautify the lock strings to be more pleasing to the eye andIvan Voras2008-12-191-4/+4
* Remove spaces in wait object names to make top (1) output prettier andIvan Voras2008-12-181-5/+5
* Change ttyhook_register() second argument from thread to process pointer.Alexander Motin2008-12-131-4/+11
* Reduce the default baud rate of PTY's to 9600.Ed Schouten2008-11-081-1/+1
* Clamp the values of t_column to 5 digits in `pstat -t' and `show all ttys'.Ed Schouten2008-11-011-1/+1
* Reimplement the /dev/console device node.Ed Schouten2008-11-011-9/+87
* Fix spelling mistake in the last rev.Andrew Thompson2008-10-211-1/+1
* If we have getc_inject hooked then the outq buffer is inaccessible to theAndrew Thompson2008-10-211-0/+4
* Import some improvements to the TTY code from the MPSAFE TTY branch.Ed Schouten2008-10-151-37/+162
* Don't forget to initialize `int error' in ttydev_open().Ed Schouten2008-09-261-1/+1
* Fix a crash when calling tty_rel_free() while draining during closure.Ed Schouten2008-09-241-2/+2
* Introduce a hooks layer for the MPSAFE TTY layer.Ed Schouten2008-09-221-2/+88
* Fix minor TTY API inconsistency.Ed Schouten2008-09-161-0/+3
* Make TIOCCONS use priv_check() instead of checking /dev/console permissions.Ed Schouten2008-09-061-35/+8
* Implement pts(4) packet mode.Ed Schouten2008-09-041-0/+21
* Fix some edge cases in the TTY queues:Ed Schouten2008-08-301-22/+10
* Properly unlock the init/lock-state devices when invoking TIOCSETA.Ed Schouten2008-08-271-1/+0
* Fix two small bugs in tcsetattr().Ed Schouten2008-08-221-7/+6
* Prevent VSTART flooding when turning on software flow control.Ed Schouten2008-08-221-1/+1
* Integrate the new MPSAFE TTY layer to the FreeBSD operating system.Ed Schouten2008-08-201-2830/+1352
* Move ttyinfo() into its own C file.Ed Schouten2008-07-251-269/+0
* Rev. 1.274 put the ttyrel() call before the destroy_dev() in theKonstantin Belousov2008-05-231-2/+5
* The dev_refthread() in the tty_gettp() may fail, because Giant is takenKonstantin Belousov2008-05-231-5/+6
* Use the t_state for the TS_GONE test.Konstantin Belousov2008-05-231-1/+1
* Move TTY unrelated bits out of <sys/tty.h>.Ed Schouten2008-05-231-0/+1