summaryrefslogtreecommitdiff
path: root/sys/kern
AgeCommit message (Expand)Author
2002-03-23make COMPAT_11 or COMPAT_12 imply EXEC_ELF_NOTELESSSjdolecek
2002-03-23rename EXEC_ELF_CATCHALL to EXEC_ELF_NOTELESSjdolecek
2002-03-22Make sure file descriptor is properly FILE_UNUSE()d in error casejdolecek
2002-03-20emulation specific sysctls.christos
2002-03-18Use /emul/pecoff as prefix to run PE/COFF binaries.oki
2002-03-17oops, forgot to commit the caller of exithook...christos
2002-03-17use the exithook mechanism to clean up semaphores.christos
2002-03-17- merge all the hook insertion and deletion code so that we don't createchristos
2002-03-17Convert ioctl code to use EPASSTHROUGH instead of -1 or ENOTTY foratatat
2002-03-17Add a new ptrace request, PT_IO, as proposed by Artur Grabowskithorpej
2002-03-17White space nits.simonb
2002-03-17We don't need to include <uvm/uvm_extern.h> before <sys/sysctl.h> anymore.simonb
2002-03-16fix bread() to return errors from reading past the end of the device.chs
2002-03-16size_t is a long on alpha. I forget whether there's actually a 'best'mjacob
2002-03-15Don't forget to allocate space for the property name's trailing NUL.eeh
2002-03-13Merge the update to FreeBSD rev 1.95.jdolecek
2002-03-13Move 'struct pool_cache_group' definition into <sys/pool.h>simonb
2002-03-13Remove two instances of an "error" variable that is only ever assigned tosimonb
2002-03-09Put back pool_prime(); the i386 mp pmap uses it.thorpej
2002-03-09When checking that a potentially-unsigned enum is >= 0, assign it to an intbjh21
2002-03-09Fix a couple of typos in simple_{,un}lock()'s.thorpej
2002-03-09Remove pool_prime(). Nothing uses it, and how it should be used it notthorpej
2002-03-09Make mbpool and mclpool use the new drain hook facaility. Adjustthorpej
2002-03-09If, when a page becomes idle, the backend allocator is waiting forthorpej
2002-03-09Remove PR_MALLOCOK and PR_STATIC. The former wasn't actually used,thorpej
2002-03-08Add a missing simple_unlock.thorpej
2002-03-08Add an optional "drain" client callback, which can be set by the newthorpej
2002-03-08Remove PR_FREEHEADER; nothing uses it anymore.thorpej
2002-03-08Pool deals fairly well with physical memory shortage, but it doesn'tthorpej
2002-03-05Make the debugging printfs compile:nathanw
2002-03-04nlinesw is already declared in <sys/conf.h>.simonb
2002-03-04Use <sys/disk.h> for the prototype of disk_init() rather than declaringsimonb
2002-03-04Don't use local extern declarations for the mountroot variable orsimonb
2002-03-02move the COMPAT_SUNOS TIOCGPGRP handling in the compat sunos code proper.mrg
2002-02-28Don't assign NULL to non-pointer variables.thorpej
2002-02-21Reworked the o32/n32 matching scheme. IRIX uses some e_flags in the ELFmanu
2002-02-17ICANON is in lflags, by Neelkanth Natuchristos
2002-02-16Use sizeof correctly. Fixes PR#15613.enami
2002-02-16- Wrap long line.enami
2002-02-15Add a "show event" ddb command to show the event counters.simonb
2002-02-14allow writing to write-only mappings. fixes PR 3493.chs
2002-02-12const char *mclpool_warnmsg -> const char mclpool_warnmsg[]thorpej
2002-02-11Switch default for pipes to the faster John S. Dyson's implementation.jdolecek
2002-02-10getblk()'s "block size invariant" isn't valid for VBLK vnodeschs
2002-02-09extent_alloc_subregion1(): when a candidate region doesn't fit after beingbouyer
2002-02-08Andrew Brown found that we overflowed all cases in the TTLINEDNAMELEN.christos
2002-02-08Add a "ddb" command (if DDB is configured into the kernel) forthorpej
2002-02-05add an assert (hopefully to find where we recycle vnodes withoutchs
2002-02-02Kick DEFAULT_MAXPTYS from 256 to 992tls
2002-01-31fcntl(..., F_GETOWN, ...): fix LP64-BE bug; raised by der Mousekleink