Kernel normal form, or KNF, is the coding style used in the development of code for the BSD operating systems. Based on the original KNF concept from the Computer Systems Research Group, it dictates a programming style to which contributed code should adhere prior to its inclusion into the codebase. KNF started out as a codification of how Ken Thompson and Dennis Ritchie formatted the original UNIX C source code. It describes such things as how to name variables, use indents and the use of ANSI C or K&R C code styles. Each BSD variant has its own KNF rules, which have evolved over time to differ from each other in small ways.
The SunOS kernel and userland also uses a similar indentation style that was derived from AT&T style documents and that is sometimes known as Bill Joy Normal Form. The correctness of the indentation of a list of source files can be verified by a style checker program written by Bill Shannon. This style checker program is called cstyle.
Video Kernel Normal Form
See also
- Programming style
- Indent style
Maps Kernel Normal Form
References
External links
style(9)
: Kernel source file style guide - DragonFly BSD System Kernel Interfaces Manualstyle(9)
: Kernel source file style guide - FreeBSD Kernel Developer's Manualstyle(9)
: Kernel source file style guide - MirOS BSD i386 Kernel Internals Manualstyle(9)
: Kernel source file style guide - OpenBSD Kernel Developer's Manual- The NetBSD source code style guide
cstyle(1ONBLD)
: SunOS source style guide checker - illumos and OpenSolaris Solaris-ON Build manuals Reference Manual from latest Sun based OpenSolaris- C Style and Coding Standards for SunOS by Bill Shannon
Source of the article : Wikipedia