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

📄 nopsession.c

📁 著名操作系统Plan 9的第三版的部分核心源代码。现在很难找到了。Plan 9是bell实验室开发的Unix后继者。
💻 C
字号:
#include <u.h>#include <libc.h>#include <auth.h>#include <fcall.h>#include "../boot/boot.h"static Fcall	hdr;static voidrpc(int fd, int type){	int n, l;	char buf[128], *p;	hdr.type = type;	hdr.tag = NOTAG;	n = convS2M(&hdr, buf);	if(write(fd, buf, n) != n)		fatal("write rpc");	print("...");	p = buf;	l = 0;	while(l < 3) {		n = read(fd, p, 3);		if(n <= 0)			fatal("read rpc");		if(n == 2 && l == 0 && buf[0] == 'O' && buf[1] == 'K')			continue;		p += n;		l += n;	}	if(convM2S(buf, &hdr, n) == 0){		print("%ux %ux %ux\n", buf[0], buf[1], buf[2]);		fatal("rpc format");	}	if(hdr.tag != NOTAG)		fatal("rpc tag not NOTAG");	if(hdr.type == Rerror){		print("error %s;", hdr.ename);		fatal("remote error");	}	if(hdr.type != type+1)		fatal("not reply");}voidnop(int fd){	print("nop");	rpc(fd, Tnop);}

⌨️ 快捷键说明

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