summaryrefslogtreecommitdiff
path: root/sys/kern/tty.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Implement POSIX function tcgetsid() which returns session id.David Xu2008-04-151-0/+5
* - Relax requirements for p_numthreads, p_threads, p_swtick, and p_nice fromJeff Roberson2008-03-191-6/+6
* Close a race in the kern.ttys sysctl handler that resulted in panics inJohn Baldwin2008-01-081-3/+20
* ttyfree() frees the cdev(). But if there are pending kevents,Konstantin Belousov2007-07-201-7/+17
* - Use rufetchcalc() rather than calcru() in ttyinfo so that we getJeff Roberson2007-07-011-3/+2
* Re-acquire the PROC_SLOCK before calling calcru(), and release it after,Olivier Houchard2007-06-111-0/+2
* The new compiler can't quite follow the logic of has_stime andMatt Jacob2007-06-101-1/+1
* Commit 9/14 of sched_lock decomposition.Jeff Roberson2007-06-041-57/+117
* Back out rev. 1.266. The real cause for the recent panics has been fixedMartin Blapp2006-12-201-1/+1
* Giant might have been temporarily dropped while waiting for proctree_lock, al...Martin Blapp2006-12-191-1/+1
* Add the tp->t_refcnt validity check back. There are still some raceMartin Blapp2006-12-191-1/+1
* Threading cleanup.. part 2 of several.Julian Elischer2006-12-061-25/+2
* Don't drop reference to tty in tty_close() if TS_ISOPEN is already cleared.Tor Egge2006-11-061-7/+6
* Sweep kernel replacing suser(9) calls with priv(9) calls, assigningRobert Watson2006-11-061-6/+8
* Make KSE a kernel option, turned on by default in all GENERICJohn Birrell2006-10-261-0/+11
* Any call of tty_close() with a tty refcount of <= 1 is wrong and we willMartin Blapp2006-09-301-6/+9
* Check for tp->t_refcnt == 0 before doing anything in tty_open().Martin Blapp2006-09-231-0/+6
* Back out rev. 1.258. The real race cause has been fixedMartin Blapp2006-09-211-2/+2
* Fix locking race in ttymodem(). The locking of the proctree happens too lateMartin Blapp2006-09-101-2/+2
* Move the old BSD4.3 tty compatibility from (!BURN_BRIDGES && COMPAT_43)Poul-Henning Kamp2006-01-101-11/+3
* Deorbit ttymalloc() in preference for ttyalloc()Poul-Henning Kamp2006-01-041-16/+2
* Use MTX_SYSINIT to set up the tty list mutex.Poul-Henning Kamp2006-01-041-6/+1
* Revert most of revision 1.235 and fix the problem a different way. WeJohn Baldwin2005-10-271-7/+12
* Use new functions to call into drivers methods.Poul-Henning Kamp2005-10-161-39/+27
* Make ttyconsolemode() call ttsetwater() so that drivers don't have to.Poul-Henning Kamp2005-10-161-0/+1
* Eliminate two unused arguments to ttycreate().Poul-Henning Kamp2005-10-161-2/+4
* Fix the recent panics/LORs/hangs created by my kqueue commit by:Suleiman Souhlal2005-07-011-2/+2