| Commit message (Expand) | Author | Age | Files | Lines |
| * | Reset t_column to 0 when initializing a tty. |  matthew | 2012-04-22 | 1 | -1/+2 |
| * | Make rusage totals, itimers, and profile settings per-process instead |  guenther | 2012-03-23 | 1 | -2/+2 |
| * | Recommit the reverted sigacts change now that the NFS use-after-free |  guenther | 2011-07-05 | 1 | -4/+4 |
| * | 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 | -4/+4 |
| * | Correct the sharing of the signal handling state: stuff that should |  guenther | 2011-04-15 | 1 | -4/+4 |
| * | Move PPWAIT flag from struct proc to process, so that rthreads in |  guenther | 2011-04-03 | 1 | -4/+4 |
| * | Correct the links between threads, processes, pgrps, and sessions, |  guenther | 2010-07-26 | 1 | -30/+35 |
| * | Move common code for waking up writers on a tty into a function. |  nicm | 2010-07-02 | 1 | -1/+17 |
| * | Allow tty drivers to request larger buffers at attach time using a |  deraadt | 2010-06-28 | 1 | -10/+13 |
| * | Some of the line disciplines want to check for suser. Better to pass them |  tedu | 2010-04-12 | 1 | -6/+6 |
| * | typo in documentation; missing full stop. |  sobrado | 2009-11-27 | 1 | -2/+2 |
| * | Every selwakeup() should have a matching KNOTE() (even if kqueue isn't |  nicm | 2009-11-09 | 1 | -3/+1 |
| * | Add missing KNOTE() calls after selwakeup() in ptcread() (to wake up writers |  nicm | 2009-10-30 | 1 | -1/+2 |
| * | For the TIOCSET* ioctls, validate that the tty speeds are positive (since |  deraadt | 2009-10-28 | 1 | -1/+8 |
| * | clalloc() can't fail, so there's no need to handle failure cases. |  blambert | 2009-07-19 | 1 | -12/+11 |
| * | EVFILT_WRITE filters should return the amount of space remaining in the |  kettenis | 2008-12-24 | 1 | -3/+7 |
| * | for ^T support, grab all the information from the process before going |  deraadt | 2008-11-11 | 1 | -17/+17 |
| * | Fix integer truncation in ttwrite(). ok deraadt, miod. |  stefan | 2008-07-28 | 1 | -3/+4 |
| * | tputchar() can put characters on the tty output queue if clocal is set, |  deraadt | 2008-05-23 | 1 | -3/+3 |
| * | scrub local stack-based buffers in the tty subsystem. tested by a lot of |  deraadt | 2008-04-10 | 1 | -4/+12 |
| * | MALLOC/FREE -> malloc/free |  chl | 2007-10-29 | 1 | -2/+2 |
| * | Use M_ZERO in a few more places to shave bytes from the kernel. |  art | 2007-09-07 | 1 | -3/+3 |
| * | Since p_flag is often manipulated in interrupts and without biglock |  art | 2007-03-15 | 1 | -2/+2 |
| * | avoid missing events for timestamping (dcd change at same time as cts); |  deraadt | 2006-06-17 | 1 | -8/+8 |
| * | create a (very simple) method for timestamping CTS & DCD events on ttys, |  deraadt | 2006-04-27 | 1 | -1/+41 |
| * | ansi/deregister. No binary change. |  jsg | 2005-12-21 | 1 | -122/+55 |
| * | Use list and queue macros where applicable to make the code easier to read; |  miod | 2004-12-26 | 1 | -3/+3 |
| * | handle SONPROC; ok aaron, deraadt, krw |  markus | 2004-11-18 | 1 | -2/+3 |
| * | constify speedtabs and make ttspeedtab() take a const struct speedtab * |  mickey | 2004-09-19 | 1 | -2/+2 |
| * | debranch SMP, have fun |  niklas | 2004-06-13 | 1 | -2/+3 |
| * | check for CLOCAL flag in right variable; from sq@oganer.net |  deraadt | 2004-03-19 | 1 | -2/+2 |
| * | Dynamically allocate space for ptys; adapted from NetBSD by beck@ |  millert | 2004-02-10 | 1 | -1/+7 |
| * | Merge tty_attach() in ttymalloc() and tty_detach() in ttyfree(). The need for |  miod | 2003-10-03 | 1 | -44/+17 |
| * | Replace select backends with poll backends. selscan() and pollscan() |  millert | 2003-09-23 | 1 | -21/+22 |
| * | knf |  deraadt | 2003-08-23 | 1 | -3/+3 |
| * | change arguments to suser. suser now takes the process, and a flags |  tedu | 2003-08-15 | 1 | -2/+2 |
| * | Remove the advertising clause in the UCB license which Berkeley |  millert | 2003-06-02 | 1 | -6/+2 |
| * | Clear error before jumping back to the input loop. If error was set |  millert | 2002-12-20 | 1 | -1/+2 |
| * | can now get _ttylist via sysctl; millert ok |  deraadt | 2002-12-12 | 1 | -1/+42 |
| * | Release sessions to avoid memory leak. From NetBSD. ok deraadt@ |  nordin | 2002-07-30 | 1 | -1/+6 |
| * | Make sure to protect ttypend with spltty all the time. |  art | 2002-07-11 | 1 | -1/+12 |
| * | Change all variables definitions (int foo) in sys/sys/*.h to variable |  miod | 2002-07-03 | 1 | -1/+3 |
| * | splassert(IPL_TTY) where comments tell us we should |  art | 2002-06-11 | 1 | -6/+8 |
| * | First round of __P removal in sys |  millert | 2002-03-14 | 1 | -11/+11 |
| * | Move SET/CLR/ISSET macros to param.h. fgsch@ and millert@ ok |  nordin | 2002-01-30 | 1 | -6/+1 |
| * | Increment reference count when copying session pointer pr#2112. ok deraadt@ |  nordin | 2001-12-27 | 1 | -1/+2 |
| * | Replace inclusion of <vm/foo.h> with the correct <uvm/bar.h> when necessary. |  miod | 2001-11-06 | 1 | -2/+2 |
| * | Setting the VTIME to a value larger than 214 lead to an integer overflow |  art | 2001-10-07 | 1 | -51/+59 |
| * | Random cleanup (I don't like Ms in my tree). |  art | 2001-09-28 | 1 | -6/+6 |