| Commit message (Expand) | Author | Age | Files | Lines |
| * | Add struct proc * argument to FRELE() and FILE_SET_MATURE() in |  guenther | 2012-04-22 | 1 | -3/+3 |
| * | Recommit the reverted sigacts change now that the NFS use-after-free |  guenther | 2011-07-05 | 1 | -2/+2 |
| * | kqueue attach functions should return an errno or 0, not a plain 1. Fix |  nicm | 2011-07-02 | 1 | -2/+2 |
| * | Revert the sigacts diff: NFS can apparently retain pointers to processes |  guenther | 2011-04-18 | 1 | -2/+2 |
| * | Correct the sharing of the signal handling state: stuff that should |  guenther | 2011-04-15 | 1 | -2/+2 |
| * | Move PPWAIT flag from struct proc to process, so that rthreads in |  guenther | 2011-04-03 | 1 | -2/+2 |
| * | dead store; found by clang |  deraadt | 2010-09-24 | 1 | -2/+1 |
| * | Every time you ignore uiomove() return value, $DEITY kills a little |  miod | 2010-08-06 | 1 | -2/+4 |
| * | Correct the links between threads, processes, pgrps, and sessions, |  guenther | 2010-07-26 | 1 | -4/+5 |
| * | ptm needs no read/write, just use enodev. |  nicm | 2010-07-21 | 1 | -23/+1 |
| * | remove support for compat_sunos (and m68k4k). ok deraadt guenther |  tedu | 2010-07-02 | 1 | -16/+1 |
| * | Move common code for waking up writers on a tty into a function. |  nicm | 2010-07-02 | 1 | -8/+2 |
| * | Allow tty drivers to request larger buffers at attach time using a |  deraadt | 2010-06-28 | 1 | -9/+9 |
| * | Some of the line disciplines want to check for suser. Better to pass them |  tedu | 2010-04-12 | 1 | -3/+3 |
| * | Add a case so that FIONREAD on the master side of a pty returns the size |  nicm | 2010-04-02 | 1 | -2/+10 |
| * | Every selwakeup() should have a matching KNOTE() (even if kqueue isn't |  nicm | 2009-11-09 | 1 | -4/+1 |
| * | Use suser when possible. Suggested by miod@. |  fgsch | 2009-10-31 | 1 | -2/+2 |
| * | Add missing KNOTE() calls after selwakeup() in ptcread() (to wake up writers |  nicm | 2009-10-30 | 1 | -1/+2 |
| * | Remove a redundant if (maxpty == npty) in check_pty - this is also tested by |  nicm | 2009-10-14 | 1 | -5/+1 |
| * | Having pty_isfree_locked() be inlined may make pty allocation a tiny |  deraadt | 2009-09-29 | 1 | -2/+3 |
| * | Fix integer truncation in pcread() and ptcwrite(). ok miod, otto, deraadt. |  stefan | 2008-08-02 | 1 | -6/+6 |
| * | check TIOCSIG for 0 and do not send that to psignal() and pgsignal() |  deraadt | 2008-05-07 | 1 | -4/+4 |
| * | scrub local stack-based buffers in the tty subsystem. tested by a lot of |  deraadt | 2008-04-10 | 1 | -25/+44 |
| * | Use M_ZERO in a few more places to shave bytes from the kernel. |  art | 2007-09-07 | 1 | -6/+5 |
| * | Add a name argument to the RWLOCK_INITIALIZER macro. |  thib | 2007-05-29 | 1 | -2/+3 |
| * | Typos grab bag of the month, eyeballed by jmc@ |  miod | 2006-03-04 | 1 | -2/+2 |
| * | Fix logic botch when checking for COMPAT_SUNOS binary specifics; repairs |  miod | 2006-01-18 | 1 | -6/+8 |
| * | ansi/deregister. No binary change. |  jsg | 2005-12-21 | 1 | -71/+36 |
| * | Fix a crash in ptmioctl() in the error path when the master has |  millert | 2005-11-21 | 1 | -3/+5 |
| * | RIP stackable filesystems, ok marius@ tedu@, discussed with deraadt@ |  pedro | 2005-05-26 | 1 | -2/+2 |
| * | When setting kern.tty.maxptys, store the old value in oldp, not |  millert | 2005-01-28 | 1 | -17/+15 |
| * | Set atime and mtime when giving out a new pty. With help from tholo@ |  millert | 2004-12-19 | 1 | -2/+11 |
| * | * add a missing vput() if VOP_SETATTR() fails. |  pat | 2004-12-07 | 1 | -2/+4 |
| * | remove p arg from fdplock |  tedu | 2004-07-22 | 1 | -2/+2 |
| * | I was wrong. The assymetry created by the proc argument to rw_enter_write |  art | 2004-07-21 | 1 | -3/+3 |
| * | go away statics |  niklas | 2004-07-09 | 1 | -3/+3 |
| * | Crank max ptys to 992. We now have 62 pty/tty pairs for each letter |  millert | 2004-04-11 | 1 | -5/+5 |
| * | Fix calculation of the index into TTY_LETTERS. This only worked |  millert | 2004-04-11 | 1 | -2/+2 |
| * | Make sure we allow for the time when check_pty has not yet been called |  beck | 2004-02-23 | 1 | -2/+3 |
| * | Fix off-by-one wrt TTY_LETTERS and minor being out of bounds. Missed |  millert | 2004-02-10 | 1 | -2/+2 |
| * | Add the ptm device to pty(4). By opening /dev/ptm and using the PTMGET |  millert | 2004-02-10 | 1 | -19/+329 |
| * | Dynamically allocate space for ptys; adapted from NetBSD by beck@ |  millert | 2004-02-10 | 1 | -29/+147 |
| * | Merge tty_attach() in ttymalloc() and tty_detach() in ttyfree(). The need for |  miod | 2003-10-03 | 1 | -7/+3 |
| * | Replace select backends with poll backends. selscan() and pollscan() |  millert | 2003-09-23 | 1 | -45/+40 |
| * | make it compile again damnit; from slash@peereboom.us |  mickey | 2003-07-22 | 1 | -2/+2 |
| * | remove caddr_t casts. it's just silly to cast something when the function |  tedu | 2003-07-21 | 1 | -16/+15 |
| * | doing kqueue on the master side of the pty returns events |  mickey | 2003-06-14 | 1 | -1/+103 |
| * | Remove the advertising clause in the UCB license which Berkeley |  millert | 2003-06-02 | 1 | -6/+2 |
| * | First round of __P removal in sys |  millert | 2002-03-14 | 1 | -6/+6 |
| * | ICANON is a t_lflag, not t_iflag; neelnatu@yahoo.com |  deraadt | 2002-02-17 | 1 | -3/+3 |