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

📄 pipe.s

📁 klibc精简化的c程序库
💻 S
字号:
/* * arch/sparc/pipe.S * * The pipe system call are special on sparc[64]: * they return the two file descriptors in %o0 and %o1. */#include <asm/unistd.h>	.globl	pipe	.type	pipe,#function       	.align	4pipe:	mov	__NR_pipe, %g1	or	%o0, 0, %g4	t	0x10	bcc	1f	  nop	sethi	%hi(errno), %g4	or	%g4, %lo(errno), %g4	st	%o0,[%g4]	retl	  mov	-1, %o01:	st	%o0,[%g4]	st	%o1,[%g4+4]	retl	  mov	0, %o0	.size pipe,.-pipe

⌨️ 快捷键说明

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