aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/tty.c
Commit message (Expand)AuthorAgeFilesLines
* utime/stime.tv_sec are elapsed times, not relative to 1970. We canPeter Wemm2001-11-171-4/+4
* You cannot cast a time_t to quad_t and printf it with %lld. quad_t isPeter Wemm2001-11-161-2/+2
* o Move suser() calls in kern/ to using suser_xxx() with an explicitRobert Watson2001-11-011-4/+4
* Make ttyprintf() of tv_sec value type agnostic.Matthew Dillon2001-10-291-4/+4
* KSE Milestone 2Julian Elischer2001-09-121-8/+19
* Fix a warning on alpha (real problem) and make pstat -t work as a bonus.Peter Wemm2001-09-101-1/+1
* Export the tk_nin and tk_nout variables (number of tty input/outputThomas Moestl2001-08-041-0/+4
* Unifdef DEV_SNP; snp(4) no longer requires these ugly hacks.Dima Dorfman2001-05-221-27/+0
* Undo part of the tangle of having sys/lock.h and sys/mutex.h included inMark Murray2001-05-011-1/+2
* Grab the process lock while calling psignal and before calling psignal.John Baldwin2001-03-071-2/+8
* implement OCRNL, ONOCR, and ONLRETAssar Westerlund2001-03-041-1/+11
* Fix tab breakage from last commit.Jonathan Lemon2001-02-171-2/+2
* Extend kqueue down to the device layer.Jonathan Lemon2001-02-151-0/+89
* Change and clean the mutex lock interface.Bosko Milekic2001-02-091-2/+2
* Turn '#if NSNP > 0' into an option.Peter Wemm2001-01-291-6/+6
* - Catch up to proc flag changes.John Baldwin2001-01-241-2/+3
* - All of proc_compare needs sched_lock, so hold it for the for loop thatJohn Baldwin2001-01-201-40/+20
* Be more careful with sched_lock in the SIGINFO handler. Specifically, doJohn Baldwin2001-01-201-10/+21
* Convert more malloc+bzero to malloc+M_ZERO.David Malone2000-12-081-2/+1
* Protect p_stat with sched_lock.John Baldwin2000-12-021-0/+12
* Kernel support for erase2 character.Jordan K. Hubbard2000-11-281-3/+12
* Major update to the way synchronization is done in the kernel. HighlightsJason Evans2000-09-071-1/+2
* Previous commit changing SYSCTL_HANDLER_ARGS violated KNF.Poul-Henning Kamp2000-07-041-1/+1
* Style police catches up with rev 1.26 of src/sys/sys/sysctl.h:Poul-Henning Kamp2000-07-031-1/+1
* Back out the previous change to the queue(3) interface.Jake Burkholder2000-05-261-1/+1
* Change the way that the queue(3) structures are declared; don't assume thatJake Burkholder2000-05-231-1/+1
* Move t_timeout initializing to ttyregisterAndrey A. Chernov2000-05-011-1/+1
* Set t_timeout to its default sysctl value only once in ttyopenAndrey A. Chernov2000-05-011-1/+3
* Add sysctl variable to set initial drainwait timeout on ttyopen, default toAndrey A. Chernov2000-04-301-1/+5
* Add default 5min timeout for output drain to stop hanging on exit or in otherAndrey A. Chernov2000-04-271-0/+2
* Fix a bug where SIGIO was not being delivered to a process requestingArchie Cobbs2000-04-051-0/+2
* Back out previous commit; it was premature.Archie Cobbs2000-01-281-57/+0
* When an attempt to install a line discipline fails, check forArchie Cobbs2000-01-281-0/+57
* This is a partial commit of the patch from PR 14914:Poul-Henning Kamp1999-11-161-2/+2
* sigset_t change (part 2 of 5)Marcel Moolenaar1999-09-291-13/+15
* Introduce ttyread() and ttywrite() which do the canonical thing.Poul-Henning Kamp1999-09-281-0/+29
* Remove five now unused fields from struct cdevsw. They should neverPoul-Henning Kamp1999-09-251-0/+8
* This patch clears the way for removing a number of tty relatedPoul-Henning Kamp1999-09-251-32/+4
* $Id$ -> $FreeBSD$Peter Wemm1999-08-281-1/+1
* Enable ttymalloc().Poul-Henning Kamp1999-08-081-9/+6
* Add new sysctl "kern.ttys" which return all the struct tty's which havePoul-Henning Kamp1999-08-081-1/+33
* Don't call calcru() on a swapped-out process. calcru() access p_stats, whichDmitrij Tejblum1999-05-221-8/+11
* I got tired of seeing all the cdevsw[major(foo)] all over the place.Poul-Henning Kamp1999-05-081-6/+6
* Add sufficient braces to keep egcs happy about potentially ambiguousPeter Wemm1999-05-061-4/+5
* Suser() simplification:Poul-Henning Kamp1999-04-271-5/+5
* Introduce machine-dependent macro pgtok() to convert page count to numberLuoqi Chen1999-02-191-2/+1
* Hide access to vmspace:vm_pmap with inline function vmspace_pmap(). ThisLuoqi Chen1999-02-191-7/+2
* Use suser() to check for super user rather than examining cr_uid directly.Poul-Henning Kamp1999-01-301-3/+3
* Fix warnings related to -Wall -Wcast-qualMatthew Dillon1999-01-281-2/+2
* Split DIAGNOSTIC -> DIAGNOSTIC, INVARIANTS, and INVARIANT_SUPPORT asEivind Eklund1999-01-081-5/+3