error.h
来自「jos lab3代码」· C头文件 代码 · 共 19 行
H
19 行
/* 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 + =
减小字号Ctrl + -
显示快捷键?