summaryrefslogtreecommitdiffstats
path: root/sys/kern/tty_pty.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* Add struct proc * argument to FRELE() and FILE_SET_MATURE() inguenther2012-04-221-3/+3
* Recommit the reverted sigacts change now that the NFS use-after-freeguenther2011-07-051-2/+2
* kqueue attach functions should return an errno or 0, not a plain 1. Fixnicm2011-07-021-2/+2
* Revert the sigacts diff: NFS can apparently retain pointers to processesguenther2011-04-181-2/+2
* Correct the sharing of the signal handling state: stuff that shouldguenther2011-04-151-2/+2
* Move PPWAIT flag from struct proc to process, so that rthreads inguenther2011-04-031-2/+2
* dead store; found by clangderaadt2010-09-241-2/+1
* Every time you ignore uiomove() return value, $DEITY kills a littlemiod2010-08-061-2/+4
* Correct the links between threads, processes, pgrps, and sessions,guenther2010-07-261-4/+5
* ptm needs no read/write, just use enodev.nicm2010-07-211-23/+1
* remove support for compat_sunos (and m68k4k). ok deraadt guenthertedu2010-07-021-16/+1
* Move common code for waking up writers on a tty into a function.nicm2010-07-021-8/+2
* Allow tty drivers to request larger buffers at attach time using aderaadt2010-06-281-9/+9
* Some of the line disciplines want to check for suser. Better to pass themtedu2010-04-121-3/+3
* Add a case so that FIONREAD on the master side of a pty returns the sizenicm2010-04-021-2/+10
* Every selwakeup() should have a matching KNOTE() (even if kqueue isn'tnicm2009-11-091-4/+1
* Use suser when possible. Suggested by miod@.fgsch2009-10-311-2/+2
* Add missing KNOTE() calls after selwakeup() in ptcread() (to wake up writersnicm2009-10-301-1/+2
* Remove a redundant if (maxpty == npty) in check_pty - this is also tested bynicm2009-10-141-5/+1
* Having pty_isfree_locked() be inlined may make pty allocation a tinyderaadt2009-09-291-2/+3
* Fix integer truncation in pcread() and ptcwrite(). ok miod, otto, deraadt.stefan2008-08-021-6/+6
* check TIOCSIG for 0 and do not send that to psignal() and pgsignal()deraadt2008-05-071-4/+4
* scrub local stack-based buffers in the tty subsystem. tested by a lot ofderaadt2008-04-101-25/+44
* Use M_ZERO in a few more places to shave bytes from the kernel.art2007-09-071-6/+5
* Add a name argument to the RWLOCK_INITIALIZER macro.thib2007-05-291-2/+3
* Typos grab bag of the month, eyeballed by jmc@miod2006-03-041-2/+2
* Fix logic botch when checking for COMPAT_SUNOS binary specifics; repairsmiod2006-01-181-6/+8
* ansi/deregister. No binary change.jsg2005-12-211-71/+36
* Fix a crash in ptmioctl() in the error path when the master hasmillert2005-11-211-3/+5
* RIP stackable filesystems, ok marius@ tedu@, discussed with deraadt@pedro2005-05-261-2/+2
* When setting kern.tty.maxptys, store the old value in oldp, notmillert2005-01-281-17/+15
* Set atime and mtime when giving out a new pty. With help from tholo@millert2004-12-191-2/+11
* * add a missing vput() if VOP_SETATTR() fails.pat2004-12-071-2/+4
* remove p arg from fdplocktedu2004-07-221-2/+2
* I was wrong. The assymetry created by the proc argument to rw_enter_writeart2004-07-211-3/+3
* go away staticsniklas2004-07-091-3/+3
* Crank max ptys to 992. We now have 62 pty/tty pairs for each lettermillert2004-04-111-5/+5
* Fix calculation of the index into TTY_LETTERS. This only workedmillert2004-04-111-2/+2
* Make sure we allow for the time when check_pty has not yet been calledbeck2004-02-231-2/+3
* Fix off-by-one wrt TTY_LETTERS and minor being out of bounds. Missedmillert2004-02-101-2/+2
* Add the ptm device to pty(4). By opening /dev/ptm and using the PTMGETmillert2004-02-101-19/+329
* Dynamically allocate space for ptys; adapted from NetBSD by beck@millert2004-02-101-29/+147
* Merge tty_attach() in ttymalloc() and tty_detach() in ttyfree(). The need formiod2003-10-031-7/+3
* Replace select backends with poll backends. selscan() and pollscan()millert2003-09-231-45/+40
* make it compile again damnit; from slash@peereboom.usmickey2003-07-221-2/+2
* remove caddr_t casts. it's just silly to cast something when the functiontedu2003-07-211-16/+15
* doing kqueue on the master side of the pty returns eventsmickey2003-06-141-1/+103
* Remove the advertising clause in the UCB license which Berkeleymillert2003-06-021-6/+2
* First round of __P removal in sysmillert2002-03-141-6/+6
* ICANON is a t_lflag, not t_iflag; neelnatu@yahoo.comderaadt2002-02-171-3/+3