aboutsummaryrefslogtreecommitdiff
path: root/sys/kern
Commit message (Expand)AuthorAgeFilesLines
* Reviewed by: Julian Elischer <julian@whistle.com>Matthew Dillon1999-02-252-14/+58
* The previous commit also fixed a possibly-wrong (too high) priorityBruce Evans1999-02-221-1/+1
* Improved scheduling in uiomove(), etc. resched_wanted() is true tooBruce Evans1999-02-222-7/+12
* If you merge this into -stable, please increment __FreeBSD_versionJohn Polstra1999-02-201-28/+38
* A correction to the code which attempts to prevent the same moduleDoug Rabson1999-02-201-1/+3
* Introduce machine-dependent macro pgtok() to convert page count to numberLuoqi Chen1999-02-194-17/+16
* Protect vn worklist and vn->v_{clean,dirty}blkhd at splbio().Matthew Dillon1999-02-192-18/+34
* Hide access to vmspace:vm_pmap with inline function vmspace_pmap(). ThisLuoqi Chen1999-02-1911-47/+24
* Initialize procsig0.ps_refcnt to 1 (instead of 2), this would silenceLuoqi Chen1999-02-171-2/+2
* * Change sysctl from using linker_set to construct its tree using SLISTs.Doug Rabson1999-02-1610-229/+222
* Only needed to cast array index from char to unsigned char, did notMatthew Dillon1999-02-141-3/+3
* Add a prioritization field to the devstat_add_entry() call so thatKenneth D. Merry1999-02-101-5/+59
* Change the load address of the ELF dynamic linker from "2L*MAXDSIZ"John Polstra1999-02-071-2/+2
* Remove MAP_ENTRY_IS_A_MAP 'share' maps. These maps were once used toMatthew Dillon1999-02-071-2/+2
* Correct an "&" operator which should have been "&&".John Polstra1999-02-051-2/+2
* Additional note on last rev: The rationale for this is to allow youMark Newton1999-02-051-1/+1
* Created sysctl kern.fallback_elf_brand. Defaults to "none", which willMark Newton1999-02-051-1/+25
* Fix race in pipe read code whereby a blocked lock can allow anotherMatthew Dillon1999-02-041-20/+39
* vp->v_object must be valid after normal flow of vfs_object_create()Matthew Dillon1999-02-042-6/+18
* Provide elf_brand_inuse() as a method an emulator can use to find outMark Newton1999-02-041-1/+14
* Switch context before doing some i/o operations that might block ifBruce Evans1999-02-021-1/+26
* Fix the port of the NetBSD 19990120-accept fix. I misread a piece ofBill Fenner1999-02-021-2/+7
* Moved prototypes for soo_{read,write,close} into socketvar.h where theyMark Newton1999-02-011-6/+1
* Fix bogus line breaks in declarations for soo_read() and soo_write()Mark Newton1999-02-011-5/+3
* Added comments about non-staticization so it doesn't get un-done nextMark Newton1999-01-313-3/+6
* Remove unused "kern.shutdown_timeout" sysctl node.Mike Smith1999-01-301-5/+1
* An error in the last commit; the changes were submitted by, not reviewed by,Mike Smith1999-01-301-1/+1
* Add a new sysctl node kern.shutdown, off which shutdown-related thingsMike Smith1999-01-301-4/+30
* Use suser() to determine super-user-ness.Poul-Henning Kamp1999-01-302-52/+32
* Use suser() to determine super-user-ness, don't examine cr_uid directly.Poul-Henning Kamp1999-01-303-7/+13
* Use suser() to check for super user rather than examining cr_uid directly.Poul-Henning Kamp1999-01-302-5/+5
* Unstaticized routines which are needed by the svr4 KLD and the streamsMark Newton1999-01-303-12/+12
* More const fixes for -Wall, -Wcast-qualMatthew Dillon1999-01-294-10/+10
* *_execsw static structures cannot be const due to the way they interactMatthew Dillon1999-01-294-8/+8
* Cast to `const char *' instead of to c_caddr_t. This is part ofBruce Evans1999-01-292-10/+10
* More -Wall / -Wcast-qual cleanup. Also, EXEC_SET can't useMatthew Dillon1999-01-292-6/+6
* Removed bogus casts to c_caddr_t. This is part of terminatingBruce Evans1999-01-292-4/+4
* Removed a bogus cast to c_caddr_t. This is part of terminatingBruce Evans1999-01-291-2/+2
* cleanup warnings by propogating const char pointers properly.Matthew Dillon1999-01-291-3/+3
* Fix warnings related to -Wall -Wcast-qualMatthew Dillon1999-01-287-12/+16
* Fix warnings in preparation for adding -Wall -Wcast-qual to theMatthew Dillon1999-01-282-7/+7
* Fix warnings in preparation for adding -Wall -Wcast-qual to theMatthew Dillon1999-01-2813-55/+56
* Fix warnings in preparation for adding -Wall -Wcast-qual to theMatthew Dillon1999-01-273-14/+14
* Fix warnings in preparation for adding -Wall -Wcast-qual to theMatthew Dillon1999-01-2725-240/+240
* Fix array index of signed char to cast to unsigned char and then to int.Matthew Dillon1999-01-271-9/+9
* Fix getenv() comparison against '=' ... was *cp = '=' instead ofMatthew Dillon1999-01-271-2/+2
* Don't forget to count context switches in yield().Bruce Evans1999-01-271-1/+3
* Include <sys/select.h> -- don't depend on pollution in <sys/proc.h>.Bruce Evans1999-01-271-1/+2
* Ok, people didn't like kern.conf_dir. Poof, backed out.Matthew Dillon1999-01-261-6/+1
* Enable Linux threads support by default.Julian Elischer1999-01-266-114/+11