⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 errors.h

📁 用c语言开发的操作系统内核
💻 H
字号:
/************************************************************************
*
*  Module name         : ERRORS.H
*
*  Module description  :
*     This header file contains RTMK system error code.
*
*  Project             : RTMK
*
*  Target platform     : DOS
*
*  Compiler & Library  : BC++ 3.1
*
*  Author              : Richard Shen
*
*  Creation date       : 16 August, 1995
*
************************************************************************/
#ifndef ERRORS_H
#define ERRORS_H

#define SUCCESSFUL            0           /* No error               */
#define ERR_MAX_TASKS         -1          /* Too many tasks         */
#define ERR_STACK             -2          /* Stack allocation error */
#define ERR_TASK_ID           -3          /* Invalid task ID        */
#define ERR_BRKDET            -4          /* Ctrl-Break detected    */

#endif /* ERRORS_H */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -