summaryrefslogtreecommitdiffstats
path: root/sys/kern/tty_pty.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* easy size for free(); ok beckderaadt2015-09-281-2/+2
* First step towards making uiomove() take a size_t size argument:miod2015-02-101-5/+5
* Nuke yet more obvious #include duplications.krw2014-11-181-2/+1
* use mallocarray where arguments are multipled. ok deraadttedu2014-07-131-2/+2
* add a size argument to free. will be used soon, but for now default to 0.tedu2014-07-121-2/+2
* use explicit_bzero for stack and freed variablestedu2014-07-091-3/+3
* Eliminates struct pcred by moving the real and saved ugids intoguenther2014-03-301-2/+2
* Move p_sigacts from struct proc to struct process.guenther2014-03-221-2/+2
* Remove the 4.3BSD tty(4) compatibility shims. RIP. ok millert@naddy2013-12-131-14/+1
* poll(2) on a closed tty should return POLLIN|POLLHUP in reventsmillert2013-10-111-6/+6
* Back out POLLHUP change until a problem with xterm hanging on closemillert2013-10-061-5/+5
* poll(2) on a closed tty should return POLLIN|POLLHUP in reventsmillert2013-10-041-5/+5
* Fix a bug in ptcwrite() that could result in up to 100 lost bytesmillert2013-01-021-3/+3
* 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