summaryrefslogtreecommitdiff
path: root/sys/kern
AgeCommit message (Collapse)Author
1997-01-05Remove lots of timer_state structs as they just ate memory and only a few wasNiklas Hallqvist
ever used. Now a single state is kept for net, tty and disk events resp. Also, call the randomness from disk_unbusy instead of biodone, as biodone gets a lot of virtual events (from virtual filesystems etc), and as a bonus: feed xfer time and size into the entropy pool too.
1997-01-04spec_advlock() via lf_advlock()kstailey
1997-01-02pulled out the duplicated, conditional code from both kern/vfs_syscalls.cMichael Shalayeff
and compat/common/vfs_syscalls_43.c and placed a single copy of that code into miscfs/union/union_subr.c (seemed like a good place to put it, since it's union-fs related). as a side effect you can build unionfs in lkm. (netbsd pr#2950, Paul Goyette <paul@pgoyette.bdt.com>)
1996-12-23use _{NLIST,KERN}_DO_{AOUT,ELF,ECOFF} to select binary typesTheo de Raadt
1996-12-22make spec_advlock() perform indirect call to lf_advlock()kstailey
1996-12-19Really set column to 0 when outputting a carriage return...Thorsten Lockert
1996-12-17Fix oversight in column handling with OCRNL enabledThorsten Lockert
1996-12-17Reset output column when outputting \r with ONLCRThorsten Lockert
1996-12-16Implement more tty flags for better portability from other systems:Thorsten Lockert
XCASE - canonical input/output processing IUCLC - translate uppercase to lowercase on input OLCUC - translate lowercase to uppercase on output OCRNL - translate carriage return to newline on output ONOCR - do not output carriage return at column 0 ONLRET - newline performs carriage return function In addition the tty compatibility interface supports LCASE properly. Look at termios(4) for a more complete description of the above flags.
1996-12-16uiomove not checked for failure; wpaul@skynet.ctr.columbia.eduTheo de Raadt
1996-12-09Import extent manager from NetBSDNiklas Hallqvist
1996-12-08-Wcast-qual happinessNiklas Hallqvist
1996-12-06-Wcast-qual cleanupNiklas Hallqvist
1996-12-05fix locking on devices to work on diskless workstationskstailey
1996-11-29back out bitmask_snprintf()kstailey
1996-11-24Sync with NetBSD. Figure NZERO into priorities and that rlim_curTodd C. Miller
and rlim_max are >0.
1996-11-24OLF is ALIVE!etheisen
1996-11-24Commented out a def, only referenced in out-commented codeNiklas Hallqvist
1996-11-24added bitmap_snprintfkstailey
1996-11-23remrq -> remrunqueuekstailey
1996-11-23added const to second parameter of cfprint_t routineskstailey
1996-11-21export struct cfdata cfdata[];Michael Shalayeff
1996-11-11export vfs_opv_init*Michael Shalayeff
1996-11-11Flush input and output in receipt of break (unless break is ignored)Thorsten Lockert
1996-11-09Implement CREADThorsten Lockert
1996-11-09Use passed-in process, not curproc to determine if the process is in theThorsten Lockert
background
1996-11-060377 handling in ISTRIP/PARMRK modeTheo de Raadt
1996-11-06Get vnode locking right when verifying pathnames ending in '/' are directoriesThorsten Lockert
1996-11-06Temporarily disable special-case for trailing '/' in pathname lookupsThorsten Lockert
1996-11-06dk_mountroot() uses ioctl to read disklabelTheo de Raadt
1996-11-06mountroot is prototyped elsewhereTheo de Raadt
1996-11-05Add more cases that should generate SIGTTOUThorsten Lockert
1996-11-05Correct error returns from tcsetpgrp() aka ioctl(, TIOCSPGRP, )Thorsten Lockert
1996-11-04support _POSIX_VDISABLE for VEOF and VEOL tooTheo de Raadt
1996-11-04permit locking on devicesTheo de Raadt
1996-11-04If VMIN=0, and timer>0 and expires, read should return 0Theo de Raadt
1996-11-01Pull in changes from Manuel.Jason Downs
1996-10-29syncTheo de Raadt
1996-10-29prettyTheo de Raadt
1996-10-28Disallow null strings ("") as path names; ignore trailing / on path names,Thorsten Lockert
but make sure the last element of such a path is a directory
1996-10-28More argument checking of fcntl(, F_GETLK, )Thorsten Lockert
1996-10-27Better error checking for lseek(2)Thorsten Lockert
1996-10-27Signal handling now fully POSIX.1-1990 compliantThorsten Lockert
1996-10-27Allow kill(, 0) on process groups that hold only zombies; per POSIXThorsten Lockert
1996-10-27Allow set[gu]id() if the [gu]id we are trying to set is the saved [gu]id,Thorsten Lockert
but only set effective [gu]id.
1996-10-27Don't verify that euid has write permissionThorsten Lockert
1996-10-27Correct last fixThorsten Lockert
1996-10-26Verify arguments to fcntl(, F_GETLK, )Thorsten Lockert
1996-10-26Verify that options to wait4() are legalThorsten Lockert
1996-10-26Verify that pgid argument to setpgid() is legalThorsten Lockert