sys.h

来自「<B>Digital的Unix操作系统VAX 4.2源码</B>」· C头文件 代码 · 共 16 行

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