kern_levels.h 932 B

12345678910111213141516171819202122232425
  1. #ifndef __KERN_LEVELS_H__
  2. #define __KERN_LEVELS_H__
  3. #define KERN_SOH "\001" /* ASCII Start Of Header */
  4. #define KERN_SOH_ASCII '\001'
  5. #define KERN_EMERG KERN_SOH "0" /* system is unusable */
  6. #define KERN_ALERT KERN_SOH "1" /* action must be taken immediately */
  7. #define KERN_CRIT KERN_SOH "2" /* critical conditions */
  8. #define KERN_ERR KERN_SOH "3" /* error conditions */
  9. #define KERN_WARNING KERN_SOH "4" /* warning conditions */
  10. #define KERN_NOTICE KERN_SOH "5" /* normal but significant condition */
  11. #define KERN_INFO KERN_SOH "6" /* informational */
  12. #define KERN_DEBUG KERN_SOH "7" /* debug-level messages */
  13. #define KERN_DEFAULT KERN_SOH "d" /* the default kernel loglevel */
  14. /*
  15. * Annotation for a "continued" line of log printout (only done after a
  16. * line that had no enclosing \n). Only to be used by core/arch code
  17. * during early bootup (a continued line is not SMP-safe otherwise).
  18. */
  19. #define KERN_CONT ""
  20. #endif