summaryrefslogtreecommitdiff
path: root/sys/kern/kern_environment.c
Commit message (Collapse)AuthorAgeFilesLines
* Previous commit changing SYSCTL_HANDLER_ARGS violated KNF.Poul-Henning Kamp2000-07-041-1/+1
| | | | | | | Pointed out by: bde Notes: svn path=/head/; revision=62573
* Style police catches up with rev 1.26 of src/sys/sys/sysctl.h:Poul-Henning Kamp2000-07-031-1/+1
| | | | | | | | | | | Sanitize SYSCTL_HANDLER_ARGS so that simplistic tools can grog our sources: -sysctl_vm_zone SYSCTL_HANDLER_ARGS +sysctl_vm_zone (SYSCTL_HANDLER_ARGS) Notes: svn path=/head/; revision=62454
* Change the prototype of the strto* routines to make the secondArchie Cobbs1999-11-241-2/+3
| | | | | | | | | | | | | | parameter a char ** instead of a const char **. This make these kernel routines consistent with the corresponding libc userland routines. Which is actually 'correct' is debatable, but consistency and following the spec was deemed more important in this case. Reviewed by (in concept): phk, bde Notes: svn path=/head/; revision=53648
* add in actual getenv_quad functionMatt Jacob1999-11-071-1/+17
| | | | Notes: svn path=/head/; revision=52947
* Trim unused options (or #ifdef for undoc options).Peter Wemm1999-10-111-1/+0
| | | | | | | Submitted by: phk Notes: svn path=/head/; revision=52128
* $Id$ -> $FreeBSD$Peter Wemm1999-08-281-1/+1
| | | | Notes: svn path=/head/; revision=50477
* Fix warnings related to -Wall -Wcast-qualMatthew Dillon1999-01-281-2/+2
| | | | Notes: svn path=/head/; revision=43351
* Fix getenv() comparison against '=' ... was *cp = '=' instead ofMatthew Dillon1999-01-271-2/+2
| | | | | | | *cp == '='. Notes: svn path=/head/; revision=43299
* Add getenv_int(), specifically for retrieving integer values from kernelMike Smith1999-01-151-1/+20
| | | | | | | | environment variables. This makes it easy to pass tuning parameters in from the bootloader. Notes: svn path=/head/; revision=42706
* Don't try to initialise the environment out of a sysinit, it's handledMike Smith1998-10-091-10/+1
| | | | | | | in MD code instead. Notes: svn path=/head/; revision=40131
* Fix damaged comment.Jordan K. Hubbard1998-10-091-1/+2
| | | | Notes: svn path=/head/; revision=40116
* Kernel environment access, preloaded module lookup.Mike Smith1998-10-091-0/+126
Notes: svn path=/head/; revision=40090