libk  Update of "rules"

Overview

Artifact ID: 7b7f66fee523658adf3c122ac8178a6837b10208d508be927216a97cd990c73b
Page Name:rules
Date: 2019-10-31 04:18:29
Original User: lexi
Mimetype:text/x-markdown
Parent: ac47873d45b1ea271a42221b3ee13acdd7b07a9acaa5721535cbc93f6887e2b9 (diff)
Next 9e04f089fd3b946ad566ba2eb31e056dffbd56d7d62d079546f3f1225a330d98
Content

rules

this page is an evolving list of the libk project's official rules.

coding rules

  1. when in doubt, ask yourself, "is this better than glibc?"
  2. always include a block comment at the top source files you contribute that includes the file name, the name of the function it defnes (if any), your name/handle, and a brief outline of the file's purpose. try to follow the pattern of existing files.
  3. create one file per function. if you add extra supporting functions to a file, they must not be included in the header, and must be marked static to prevent them from being exported. helper functions do not need to follow any namespacing convention, as they are not exported.
  4. in your C, do not rely on any headers that are not defined within libk itself.
  5. assembly code should compile under yasm and nasm. intel syntax is required, and inline assembly in C files is forbidden as it creates a maintenance nightmare and is non-standard.
  6. write as little assembly as possible. remember that every line of assembly you write is another line that has to be ported meticulously to every single architecture we support. assembly should only be used for those tasks that absolutely cannot be accomplished with C.
  7. comment your assembly very thoroughly. nearly every line should have a paragraph explaining its purpose in context, to aid porting and make the libk source useful as a tool for understanding how systems function at a low level.
  8. try to maintain clean abstractions, but keep in mind that abstraction should always serve a material purpose. never mix layers of abstractions, as this can make it hard to maintain clean separation between OS-specific code and general-purpose code.
  9. do not create new modules without first consulting the rest of the libk team.

community rules

  1. for the time being, the project maintainer is the final arbiter over both technical and social issues. however, if a solid core leadership team can be established, it may be in the project's best interest to transition from autocracy to oligarchy.

the team is currently still small enough that no further community rulemaking has yet been necessary.