📄 error.h
字号:
/* See COPYRIGHT for copyright information. */#ifndef JOS_INC_ERROR_H#define JOS_INC_ERROR_H// Kernel error codes -- keep in sync with list in lib/printfmt.c.#define E_UNSPECIFIED 1 // Unspecified or unknown problem#define E_BAD_ENV 2 // Environment doesn't exist or otherwise // cannot be used in requested action#define E_INVAL 3 // Invalid parameter#define E_NO_MEM 4 // Request failed due to memory shortage#define E_NO_FREE_ENV 5 // Attempt to create a new environment beyond // the maximum allowed#define E_FAULT 6 // Memory fault#define MAXERROR 6#endif // !JOS_INC_ERROR_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -