state.h

来自「用于motorala 68K系列处理器的小实时多任务操作系统 The OMU 」· C头文件 代码 · 共 26 行

H
26
字号
/****************************************************************************** *	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 + =
减小字号Ctrl + -
显示快捷键?