Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | include: General further adoption of SPDX licensing ID tags. | Pedro F. Giffuni | 2017-11-25 | 1 | -0/+2 |
| | | | | | | | | | | | | | | | Mainly focus on files that use BSD 2-Clause license, however the tool I was using mis-identified many licenses so this was mostly a manual - error prone - task. The Software Package Data Exchange (SPDX) group provides a specification to make it easier for automated tools to detect and summarize well known opensource licenses. We are gradually adopting the specification, noting that the tags are considered only advisory and do not, in any way, superceed or replace the license texts. Notes: svn path=/head/; revision=326192 | ||||
* | Fix prototype to match the code and documentation. | Ruslan Ermilov | 2005-11-24 | 1 | -1/+1 |
| | | | | Notes: svn path=/head/; revision=152750 | ||||
* | Rework the kernel environment subsystem. We now convert the static | Maxime Henrion | 2002-04-17 | 1 | -0/+39 |
environment needed at boot time to a dynamic subsystem when VM is up. The dynamic kernel environment is protected by an sx lock. This adds some new functions to manipulate the kernel environment : freeenv(), setenv(), unsetenv() and testenv(). freeenv() has to be called after every getenv() when you have finished using the string. testenv() only tests if an environment variable is present, and doesn't require a freeenv() call. setenv() and unsetenv() are self explanatory. The kenv(2) syscall exports these new functionalities to userland, mainly for kenv(1). Reviewed by: peter Notes: svn path=/head/; revision=94936 |