| Commit message (Expand) | Author | Age | Files | Lines |
* | utime/stime.tv_sec are elapsed times, not relative to 1970. We can | peter | 2001-11-17 | 1 | -4/+4 |
* | You cannot cast a time_t to quad_t and printf it with %lld. quad_t is | peter | 2001-11-16 | 1 | -2/+2 |
* | o Move suser() calls in kern/ to using suser_xxx() with an explicit | rwatson | 2001-11-01 | 1 | -4/+4 |
* | Make ttyprintf() of tv_sec value type agnostic. | dillon | 2001-10-29 | 1 | -4/+4 |
* | KSE Milestone 2 | julian | 2001-09-12 | 1 | -8/+19 |
* | Fix a warning on alpha (real problem) and make pstat -t work as a bonus. | peter | 2001-09-10 | 1 | -1/+1 |
* | Export the tk_nin and tk_nout variables (number of tty input/output | tmm | 2001-08-04 | 1 | -0/+4 |
* | Unifdef DEV_SNP; snp(4) no longer requires these ugly hacks. | dd | 2001-05-22 | 1 | -27/+0 |
* | Undo part of the tangle of having sys/lock.h and sys/mutex.h included in | markm | 2001-05-01 | 1 | -1/+2 |
* | Grab the process lock while calling psignal and before calling psignal. | jhb | 2001-03-07 | 1 | -2/+8 |
* | implement OCRNL, ONOCR, and ONLRET | assar | 2001-03-04 | 1 | -1/+11 |
* | Fix tab breakage from last commit. | jlemon | 2001-02-17 | 1 | -2/+2 |
* | Extend kqueue down to the device layer. | jlemon | 2001-02-15 | 1 | -0/+89 |
* | Change and clean the mutex lock interface. | bmilekic | 2001-02-09 | 1 | -2/+2 |
* | Turn '#if NSNP > 0' into an option. | peter | 2001-01-29 | 1 | -6/+6 |
* | - Catch up to proc flag changes. | jhb | 2001-01-24 | 1 | -2/+3 |
* | - All of proc_compare needs sched_lock, so hold it for the for loop that | jhb | 2001-01-20 | 1 | -40/+20 |
* | Be more careful with sched_lock in the SIGINFO handler. Specifically, do | jhb | 2001-01-20 | 1 | -10/+21 |
* | Convert more malloc+bzero to malloc+M_ZERO. | dwmalone | 2000-12-08 | 1 | -2/+1 |
* | Protect p_stat with sched_lock. | jhb | 2000-12-02 | 1 | -0/+12 |
* | Kernel support for erase2 character. | jkh | 2000-11-28 | 1 | -3/+12 |
* | Major update to the way synchronization is done in the kernel. Highlights | jasone | 2000-09-07 | 1 | -1/+2 |
* | Previous commit changing SYSCTL_HANDLER_ARGS violated KNF. | phk | 2000-07-04 | 1 | -1/+1 |
* | Style police catches up with rev 1.26 of src/sys/sys/sysctl.h: | phk | 2000-07-03 | 1 | -1/+1 |
* | Back out the previous change to the queue(3) interface. | jake | 2000-05-26 | 1 | -1/+1 |
* | Change the way that the queue(3) structures are declared; don't assume that | jake | 2000-05-23 | 1 | -1/+1 |
* | Move t_timeout initializing to ttyregister | ache | 2000-05-01 | 1 | -1/+1 |
* | Set t_timeout to its default sysctl value only once in ttyopen | ache | 2000-05-01 | 1 | -1/+3 |
* | Add sysctl variable to set initial drainwait timeout on ttyopen, default to | ache | 2000-04-30 | 1 | -1/+5 |
* | Add default 5min timeout for output drain to stop hanging on exit or in other | ache | 2000-04-27 | 1 | -0/+2 |
* | Fix a bug where SIGIO was not being delivered to a process requesting | archie | 2000-04-05 | 1 | -0/+2 |
* | Back out previous commit; it was premature. | archie | 2000-01-28 | 1 | -57/+0 |
* | When an attempt to install a line discipline fails, check for | archie | 2000-01-28 | 1 | -0/+57 |
* | This is a partial commit of the patch from PR 14914: | phk | 1999-11-16 | 1 | -2/+2 |
* | sigset_t change (part 2 of 5) | marcel | 1999-09-29 | 1 | -13/+15 |
* | Introduce ttyread() and ttywrite() which do the canonical thing. | phk | 1999-09-28 | 1 | -0/+29 |
* | Remove five now unused fields from struct cdevsw. They should never | phk | 1999-09-25 | 1 | -0/+8 |
* | This patch clears the way for removing a number of tty related | phk | 1999-09-25 | 1 | -32/+4 |
* | $Id$ -> $FreeBSD$ | peter | 1999-08-28 | 1 | -1/+1 |
* | Enable ttymalloc(). | phk | 1999-08-08 | 1 | -9/+6 |
* | Add new sysctl "kern.ttys" which return all the struct tty's which have | phk | 1999-08-08 | 1 | -1/+33 |
* | Don't call calcru() on a swapped-out process. calcru() access p_stats, which | dt | 1999-05-22 | 1 | -8/+11 |
* | I got tired of seeing all the cdevsw[major(foo)] all over the place. | phk | 1999-05-08 | 1 | -6/+6 |
* | Add sufficient braces to keep egcs happy about potentially ambiguous | peter | 1999-05-06 | 1 | -4/+5 |
* | Suser() simplification: | phk | 1999-04-27 | 1 | -5/+5 |
* | Introduce machine-dependent macro pgtok() to convert page count to number | luoqi | 1999-02-19 | 1 | -2/+1 |
* | Hide access to vmspace:vm_pmap with inline function vmspace_pmap(). This | luoqi | 1999-02-19 | 1 | -7/+2 |
* | Use suser() to check for super user rather than examining cr_uid directly. | phk | 1999-01-30 | 1 | -3/+3 |
* | Fix warnings related to -Wall -Wcast-qual | dillon | 1999-01-28 | 1 | -2/+2 |
* | Split DIAGNOSTIC -> DIAGNOSTIC, INVARIANTS, and INVARIANT_SUPPORT as | eivind | 1999-01-08 | 1 | -5/+3 |