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

📄 disklog.c

📁 <B>Digital的Unix操作系统VAX 4.2源码</B>
💻 C
字号:
#ifdef	DISKLOGGING#include	"../h/time.h"#include	"../vax/mfpr.h"extern	struct	timeval	time;#define	MAXLOG 1000struct dklog {	struct	timeval	tim;	int	residue;	int	blkno;	short	sz;	short	unit;} dklog[MAXLOG], *cur_dklog;disklog(bk,sz,unit){	cur_dklog->blkno = bk;	cur_dklog->sz = sz;	cur_dklog->unit = unit;	cur_dklog->tim = time;	cur_dklog->residue = mfpr(ICR);	if(cur_dklog == &dklog[MAXLOG-1] ) {		cur_dklog = dklog;	} else cur_dklog++;}#endif

⌨️ 快捷键说明

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