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

📄 unistd.h

📁 Linux内核源代码 为压缩文件 是<<Linux内核>>一书中的源代码
💻 H
📖 第 1 页 / 共 5 页
字号:
#define __NR_recvfrom			(__NR_Linux + 176)#define __NR_recvmsg			(__NR_Linux + 177)#define __NR_send			(__NR_Linux + 178)#define __NR_sendmsg			(__NR_Linux + 179)#define __NR_sendto			(__NR_Linux + 180)#define __NR_setsockopt			(__NR_Linux + 181)#define __NR_shutdown			(__NR_Linux + 182)#define __NR_socket			(__NR_Linux + 183)#define __NR_socketpair			(__NR_Linux + 184)#define __NR_setresuid			(__NR_Linux + 185)#define __NR_getresuid			(__NR_Linux + 186)#define __NR_query_module		(__NR_Linux + 187)#define __NR_poll			(__NR_Linux + 188)#define __NR_nfsservctl			(__NR_Linux + 189)#define __NR_setresgid			(__NR_Linux + 190)#define __NR_getresgid			(__NR_Linux + 191)#define __NR_prctl			(__NR_Linux + 192)#define __NR_rt_sigreturn		(__NR_Linux + 193)#define __NR_rt_sigaction		(__NR_Linux + 194)#define __NR_rt_sigprocmask		(__NR_Linux + 195)#define __NR_rt_sigpending		(__NR_Linux + 196)#define __NR_rt_sigtimedwait		(__NR_Linux + 197)#define __NR_rt_sigqueueinfo		(__NR_Linux + 198)#define __NR_rt_sigsuspend		(__NR_Linux + 199)#define __NR_pread			(__NR_Linux + 200)#define __NR_pwrite			(__NR_Linux + 201)#define __NR_chown			(__NR_Linux + 202)#define __NR_getcwd			(__NR_Linux + 203)#define __NR_capget			(__NR_Linux + 204)#define __NR_capset			(__NR_Linux + 205)#define __NR_sigaltstack		(__NR_Linux + 206)#define __NR_sendfile			(__NR_Linux + 207)#define __NR_getpmsg			(__NR_Linux + 208)#define __NR_putpmsg			(__NR_Linux + 209)#define __NR_mmap2			(__NR_Linux + 210)#define __NR_truncate64			(__NR_Linux + 211)#define __NR_ftruncate64		(__NR_Linux + 212)#define __NR_stat64			(__NR_Linux + 213)#define __NR_lstat64			(__NR_Linux + 214)#define __NR_fstat64			(__NR_Linux + 215)#define __NR_pivot_root			(__NR_Linux + 216)#define __NR_mincore			(__NR_Linux + 217)#define __NR_madvise			(__NR_Linux + 218)#define __NR_getdents64			(__NR_Linux + 219)/* * Offset of the last Linux flavoured syscall */#define __NR_Linux_syscalls		219#ifndef _LANGUAGE_ASSEMBLY/* XXX - _foo needs to be __foo, while __NR_bar could be _NR_bar. */#define _syscall0(type,name) \type name(void) \{ \register long __res __asm__ ("$2"); \register long __err __asm__ ("$7"); \__asm__ volatile ("li\t$2,%2\n\t" \		  "syscall" \                  : "=r" (__res), "=r" (__err) \                  : "i" (__NR_##name) \                  : "$8","$9","$10","$11","$12","$13","$14","$15","$24"); \if (__err == 0) \	return (type) __res; \errno = __res; \return -1; \}/* * DANGER: This macro isn't usable for the pipe(2) call * which has a unusual return convention. */#define _syscall1(type,name,atype,a) \type name(atype a) \{ \register long __res __asm__ ("$2"); \register long __err __asm__ ("$7"); \__asm__ volatile ("move\t$4,%3\n\t" \		  "li\t$2,%2\n\t" \                  "syscall" \                  : "=r" (__res), "=r" (__err) \                  : "i" (__NR_##name),"r" ((long)(a)) \                  : "$4","$8","$9","$10","$11","$12","$13","$14","$15","$24"); \if (__err == 0) \	return (type) __res; \errno = __res; \return -1; \}#define _syscall2(type,name,atype,a,btype,b) \type name(atype a,btype b) \{ \register long __res __asm__ ("$2"); \register long __err __asm__ ("$7"); \__asm__ volatile ("move\t$4,%3\n\t" \                  "move\t$5,%4\n\t" \		  "li\t$2,%2\n\t" \                  "syscall" \                  : "=r" (__res), "=r" (__err) \                  : "i" (__NR_##name),"r" ((long)(a)), \                                      "r" ((long)(b)) \                  : "$4","$5","$8","$9","$10","$11","$12","$13","$14","$15", \                    "$24"); \if (__err == 0) \	return (type) __res; \errno = __res; \return -1; \}#define _syscall3(type,name,atype,a,btype,b,ctype,c) \type name (atype a, btype b, ctype c) \{ \register long __res __asm__ ("$2"); \register long __err __asm__ ("$7"); \__asm__ volatile ("move\t$4,%3\n\t" \                  "move\t$5,%4\n\t" \                  "move\t$6,%5\n\t" \		  "li\t$2,%2\n\t" \                  "syscall" \                  : "=r" (__res), "=r" (__err) \                  : "i" (__NR_##name),"r" ((long)(a)), \                                      "r" ((long)(b)), \                                      "r" ((long)(c)) \                  : "$4","$5","$6","$8","$9","$10","$11","$12","$13","$14", \                    "$15","$24"); \if (__err == 0) \	return (type) __res; \errno = __res; \return -1; \}#define _syscall4(type,name,atype,a,btype,b,ctype,c,dtype,d) \type name (atype a, btype b, ctype c, dtype d) \{ \register long __res __asm__ ("$2"); \register long __err __asm__ ("$7"); \__asm__ volatile ("move\t$4,%3\n\t" \                  "move\t$5,%4\n\t" \                  "move\t$6,%5\n\t" \                  "move\t$7,%6\n\t" \		  "li\t$2,%2\n\t" \                  "syscall" \                  : "=r" (__res), "=r" (__err) \                  : "i" (__NR_##name),"r" ((long)(a)), \                                      "r" ((long)(b)), \                                      "r" ((long)(c)), \                                      "r" ((long)(d)) \                  : "$4","$5","$6","$8","$9","$10","$11","$12","$13","$14", \                    "$15","$24"); \if (__err == 0) \	return (type) __res; \errno = __res; \return -1; \}#define _syscall5(type,name,atype,a,btype,b,ctype,c,dtype,d,etype,e) \type name (atype a,btype b,ctype c,dtype d,etype e) \{ \register long __res __asm__ ("$2"); \register long __err __asm__ ("$7"); \__asm__ volatile ("move\t$4,%3\n\t" \                  "move\t$5,%4\n\t" \                  "move\t$6,%5\n\t" \		  "lw\t$2,%7\n\t" \                  "move\t$7,%6\n\t" \		  "subu\t$29,24\n\t" \		  "sw\t$2,16($29)\n\t" \		  "li\t$2,%2\n\t" \                  "syscall\n\t" \		  "addiu\t$29,24" \                  : "=r" (__res), "=r" (__err) \                  : "i" (__NR_##name),"r" ((long)(a)), \                                      "r" ((long)(b)), \                                      "r" ((long)(c)), \                                      "r" ((long)(d)), \                                      "m" ((long)(e)) \                  : "$2","$4","$5","$6","$7","$8","$9","$10","$11","$12", \                    "$13","$14","$15","$24"); \if (__err == 0) \	return (type) __res; \errno = __res; \return -1; \}#define _syscall6(type,name,atype,a,btype,b,ctype,c,dtype,d,etype,e,ftype,f) \type name (atype a,btype b,ctype c,dtype d,etype e,ftype f) \{ \register long __res __asm__ ("$2"); \register long __err __asm__ ("$7"); \__asm__ volatile ("move\t$4,%3\n\t" \                  "move\t$5,%4\n\t" \                  "move\t$6,%5\n\t" \		  "lw\t$2,%7\n\t" \		  "lw\t$3,%8\n\t" \                  "move\t$7,%6\n\t" \		  "subu\t$29,24\n\t" \		  "sw\t$2,16($29)\n\t" \		  "sw\t$3,20($29)\n\t" \		  "li\t$2,%2\n\t" \                  "syscall\n\t" \		  "addiu\t$29,24" \                  : "=r" (__res), "=r" (__err) \                  : "i" (__NR_##name),"r" ((long)(a)), \                                      "r" ((long)(b)), \                                      "r" ((long)(c)), \                                      "r" ((long)(d)), \                                      "m" ((long)(e)), \                                      "m" ((long)(f)) \                  : "$2","$3","$4","$5","$6","$7","$8","$9","$10","$11", \                    "$12","$13","$14","$15","$24"); \if (__err == 0) \	return (type) __res; \errno = __res; \return -1; \}#define _syscall7(type,name,atype,a,btype,b,ctype,c,dtype,d,etype,e,ftype,f,gtype,g) \type name (atype a,btype b,ctype c,dtype d,etype e,ftype f,gtype g) \{ \register long __res __asm__ ("$2"); \register long __err __asm__ ("$7"); \__asm__ volatile ("move\t$4,%3\n\t" \                  "move\t$5,%4\n\t" \                  "move\t$6,%5\n\t" \		  "lw\t$2,%7\n\t" \		  "lw\t$3,%8\n\t" \                  "move\t$7,%6\n\t" \		  "subu\t$29,32\n\t" \		  "sw\t$2,16($29)\n\t" \		  "lw\t$2,%9\n\t" \		  "sw\t$3,20($29)\n\t" \		  "sw\t$2,24($29)\n\t" \		  "li\t$2,%2\n\t" \                  "syscall\n\t" \		  "addiu\t$29,32" \                  : "=r" (__res), "=r" (__err) \                  : "i" (__NR_##name),"r" ((long)(a)), \                                      "r" ((long)(b)), \                                      "r" ((long)(c)), \                                      "r" ((long)(d)), \                                      "m" ((long)(e)), \                                      "m" ((long)(f)), \                                      "m" ((long)(g)) \                  : "$2","$3","$4","$5","$6","$7","$8","$9","$10","$11", \                    "$12","$13","$14","$15","$24"); \if (__err == 0) \	return (type) __res; \errno = __res; \return -1; \}#ifdef __KERNEL_SYSCALLS__/* * we need this inline - forking from kernel space will result * in NO COPY ON WRITE (!!!), until an execve is executed. This * is no problem, but for the stack. This is handled by not letting * main() use the stack at all after fork(). Thus, no function * calls - which means inline code for fork too, as otherwise we * would use the stack upon exit from 'fork()'. * * Actually only pause and fork are needed inline, so that there * won't be any messing with the stack from main(), but we define * some others too. */#define __NR__exit __NR_exitstatic inline _syscall0(int,sync)static inline _syscall0(pid_t,setsid)static inline _syscall3(int,write,int,fd,const char *,buf,off_t,count)static inline _syscall3(int,read,int,fd,char *,buf,off_t,count)static inline _syscall3(off_t,lseek,int,fd,off_t,offset,int,count)static inline _syscall1(int,dup,int,fd)static inline _syscall3(int,execve,const char *,file,char **,argv,char **,envp)static inline _syscall3(int,open,const char *,file,int,flag,int,mode)static inline _syscall1(int,close,int,fd)static inline _syscall1(int,_exit,int,exitcode)static inline _syscall3(pid_t,waitpid,pid_t,pid,int *,wait_stat,int,options)static inline _syscall1(int,delete_module,const char *,name)static inline pid_t wait(int * wait_stat){	return waitpid(-1,wait_stat,0);}#endif /* !defined (__KERNEL_SYSCALLS__) */#endif /* !defined (_LANGUAGE_ASSEMBLY) */#endif /* __ASM_MIPS_UNISTD_H */

⌨️ 快捷键说明

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