Age | Commit message (Expand) | Author |
2016-07-10 | POSIX specifies that if a processing calling tcsetpgrp() is in the | Todd C. Miller |
2016-05-17 | Allow sendsyslog(2) with LOG_CONS even when /dev/console has not | Alexander Bluhm |
2016-03-19 | Remove the unused flags argument from VOP_UNLOCK(). | natano |
2016-01-28 | Convert to uiomove. Diff from Martin Natano. | Stefan Kempf |
2016-01-14 | Increase buffer sizes and watermarks for tty and ppp | Stefan Fritsch |
2015-12-05 | remove stale lint annotations | Ted Unangst |
2015-11-02 | move the pledgenote annotation from `struct proc' to `struct nameidata' | Sebastien Marie |
2015-10-28 | TIOCCONS will probably never be permitted, but it is good style to set | Theo de Raadt |
2015-08-28 | Modify ttystats_init() to tell us about the buffer size, so that we | Theo de Raadt |
2015-08-26 | two simple free() sizes | Theo de Raadt |
2015-07-20 | Fix tty hiwat handling a bit | Stefan Fritsch |
2015-02-10 | First step towards making uiomove() take a size_t size argument: | Miod Vallat |
2015-01-13 | Add dmesg -s support, to view the output of rc(8) system startup messages. | Marco Pfatschbacher |
2014-12-17 | remove lock.h from uvm_extern.h. another holdover from the simpletonlock | Ted Unangst |
2014-12-16 | primary change: move uvm_vnode out of vnode, keeping only a pointer. | Ted Unangst |
2014-12-10 | convert bcopy to memcpy. ok millert | Ted Unangst |
2014-12-01 | clist's chained, and could get fairly long which is why there was a | Theo de Raadt |
2014-11-18 | include unistd.h instead of picking it up accidentally. noted by jsg | Ted Unangst |
2014-09-15 | Remove non-standard <sys/dkstat.h> header. It has not contained anything | Miod Vallat |
2014-07-13 | use mallocarray where arguments are multipled. ok deraadt | Ted Unangst |
2014-07-13 | If the only process in the pgrp is in the middle of exiting, it might | Philip Guenther |
2014-07-12 | add a size argument to free. will be used soon, but for now default to 0. | Ted Unangst |
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 |