Age | Commit message (Expand) | Author |
2014-07-08 | decouple struct uvmexp into a new file, so that uvm_extern.h and sysctl.h | Theo de Raadt |
2014-07-04 | Track whether a process is a zombie or not yet fully built via flags | Philip Guenther |
2014-06-06 | Allocate the struct itty array in ttystats_init() with M_ZERO. | Matthew Dempsky |
2014-05-30 | explicit_bzero for clearing stack variables. | Ted Unangst |
2014-05-25 | Handle threaded processes correctly when processing kerninfo status requests | Philip Guenther |
2014-03-22 | Move p_sigacts from struct proc to struct process. | Philip Guenther |
2013-12-16 | Restore TIOCGSID ioctl that was removed along with the 4.3BSD tty(4) | Todd C. Miller |
2013-12-13 | Remove the 4.3BSD tty(4) compatibility shims. RIP. ok millert@ | Christian Weisgerber |
2013-10-11 | poll(2) on a closed tty should return POLLIN|POLLHUP in revents | Todd C. Miller |
2013-10-06 | Back out POLLHUP change until a problem with xterm hanging on close | Todd C. Miller |
2013-10-04 | poll(2) on a closed tty should return POLLIN|POLLHUP in revents | Todd C. Miller |
2013-06-10 | Switch from timeval to timespec introduced format error; fix by prepping | Philip Guenther |
2013-06-03 | Convert some internal APIs to use timespecs instead of timevals | Philip Guenther |
2013-04-24 | When a ucom(4) is removed, it frees the tty with ttyfree(). However if | Nicholas Marriott |
2013-01-17 | Ensure the tty hiwat is less than the size of the ring buffer (since | Theo de Raadt |
2012-04-22 | Reset t_column to 0 when initializing a tty. | Matthew Dempsky |
2012-03-23 | Make rusage totals, itimers, and profile settings per-process instead | Philip Guenthe |
2011-07-05 | Recommit the reverted sigacts change now that the NFS use-after-free | Philip Guenthe |
2011-07-02 | kqueue attach functions should return an errno or 0, not a plain 1. Fix | Nicholas Marriott |
2011-04-18 | Revert the sigacts diff: NFS can apparently retain pointers to processes | Philip Guenthe |
2011-04-15 | Correct the sharing of the signal handling state: stuff that should | Philip Guenthe |
2011-04-03 | Move PPWAIT flag from struct proc to process, so that rthreads in | Philip Guenthe |
2010-07-26 | Correct the links between threads, processes, pgrps, and sessions, | Philip Guenthe |
2010-07-02 | Move common code for waking up writers on a tty into a function. | Nicholas Marriott |
2010-06-28 | Allow tty drivers to request larger buffers at attach time using a | Theo de Raadt |
2010-04-12 | Some of the line disciplines want to check for suser. Better to pass them | Ted Unangst |
2009-11-27 | typo in documentation; missing full stop. | Igor Sobrado |
2009-11-09 | Every selwakeup() should have a matching KNOTE() (even if kqueue isn't | Nicholas Marriott |
2009-10-30 | Add missing KNOTE() calls after selwakeup() in ptcread() (to wake up writers | Nicholas Marriott |
2009-10-28 | For the TIOCSET* ioctls, validate that the tty speeds are positive (since | Theo de Raadt |
2009-07-19 | clalloc() can't fail, so there's no need to handle failure cases. | Bret Lambert |
2008-12-24 | EVFILT_WRITE filters should return the amount of space remaining in the | Mark Kettenis |
2008-11-11 | for ^T support, grab all the information from the process before going | Theo de Raadt |
2008-07-28 | Fix integer truncation in ttwrite(). ok deraadt, miod. | Stefan Kempf |
2008-05-23 | tputchar() can put characters on the tty output queue if clocal is set, | Theo de Raadt |
2008-04-10 | scrub local stack-based buffers in the tty subsystem. tested by a lot of | Theo de Raadt |
2007-10-29 | MALLOC/FREE -> malloc/free | Charles Longeau |
2007-09-07 | Use M_ZERO in a few more places to shave bytes from the kernel. | Artur Grabowski |
2007-03-15 | Since p_flag is often manipulated in interrupts and without biglock | Artur Grabowski |
2006-06-17 | avoid missing events for timestamping (dcd change at same time as cts); | Theo de Raadt |
2006-04-27 | create a (very simple) method for timestamping CTS & DCD events on ttys, | Theo de Raadt |
2005-12-21 | ansi/deregister. No binary change. | Jonathan Gray |
2004-12-26 | Use list and queue macros where applicable to make the code easier to read; | Miod Vallat |
2004-11-18 | handle SONPROC; ok aaron, deraadt, krw | Markus Friedl |
2004-09-19 | constify speedtabs and make ttspeedtab() take a const struct speedtab * | Michael Shalayeff |
2004-06-13 | debranch SMP, have fun | Niklas Hallqvist |
2004-03-19 | check for CLOCAL flag in right variable; from sq@oganer.net | Theo de Raadt |
2004-02-10 | Dynamically allocate space for ptys; adapted from NetBSD by beck@ | Todd C. Miller |
2003-10-03 | Merge tty_attach() in ttymalloc() and tty_detach() in ttyfree(). The need for | Miod Vallat |
2003-09-23 | Replace select backends with poll backends. selscan() and pollscan() | Todd C. Miller |