devxlogo

NASA Releases 10 Rules for Writing Safe Code

NASA Releases 10 Rules for Writing Safe Code

NASA has published the guidelines that it uses for writing safety-critical code. The agency primarily uses C for safety-critical code, but the guidelines are also applicable to other languages. Here are the guidelines:

  1. Restrict all code to very simple control flow constructs. Do not use GOTO statements, setjmp or longjmp constructs, or direct or indirect recursion.
  2. All loops must have a fixed upper bound.
  3. Do not use dynamic memory allocation after initialization.
  4. No function should be longer than what can be printed on a single sheet of paper (in a standard reference format with one line per statement and one line per declaration.)
  5. The assertion density of the code should average a minimum of two assertions per function. Assertions must always be side effect-free and should be defined as Boolean tests.
  6. Data objects must be declared at the smallest possible level of scope.
  7. Each calling function must check non-void function return values, and the validity of parameters must be checked inside each function.
  8. Preprocessor use must be limited to the inclusion of header files and simple macro definitions. Token pasting, variable argument lists (ellipses), and recursive macro calls are not allowed.
  9. The use of pointers should be restricted. Specifically, no more than one level of dereferencing is allowed.
  10. All code must be compiled, from the first day of development, with all compiler warnings enabled at the compiler?s most pedantic setting. All code must compile with these setting without any warnings.

View article

devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist