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

📄 state.h

📁 用于motorala 68K系列处理器的小实时多任务操作系统 The OMU Kernel was written to provide a cut-down Unix-like O/S for a
💻 H
字号:
/****************************************************************************** *	State.h		Kernal state definitions ****************************************************************************** *//* *	State	Kernal state structure */struct	State {	char	concur;		/* Indicates concurent switch on timer */	char	warning;	/* Indicates print warnings on console */	char	test;	char	uptime;		/* Update file times flag */};/*	Concurent entries */# define	SCTSWTCH	1	/* Process switch on timer */# define	SCWARN		1	/* Warnings on */# define	STEXEC		1	/* Update time on execled progs */# define	STDEV		2	/* Update time on Devices */# define	STFILES		4	/* Update time on Files */extern	struct	State state;

⌨️ 快捷键说明

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