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

📄 sys.h

📁 <B>Digital的Unix操作系统VAX 4.2源码</B>
💻 H
字号:
/*	@(#)SYS.h	4.1	ULTRIX	7/3/90	*//* * SYSCALLV -- System V system call sequence * The kernel expects arguments to be passed with the normal C calling * sequence.  v0 should contain the system call number.  On return from * the kernel mode, a3 will be 0 to indicate no error and non-zero to * indicate an error; if an error occurred v0 will contain an errno. */#define	SYSCALLV(x)					\LEAF(x);						\	li	v0,SYS/**/x;				\	syscall;					\	beq	a3,zero,9f;				\	j	_cerror;				\9:

⌨️ 快捷键说明

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