代码搜索:Torvalds
找到约 10,000 项符合「Torvalds」的源代码
代码结果 10,000
www.eeworm.com/read/354342/10362345
c write.c
/*
* linux/lib/write.c
*
* (C) 1991 Linus Torvalds
*/
#define __LIBRARY__
#include
_syscall3(int,write,int,fd,const char *,buf,off_t,count)
www.eeworm.com/read/354342/10362351
c ctype.c
/*
* linux/lib/ctype.c
*
* (C) 1991 Linus Torvalds
*/
#include
char _ctmp;
unsigned char _ctype[] = {0x00, /* EOF */
_C,_C,_C,_C,_C,_C,_C,_C, /* 0-7 */
_C,_C|_S,_C|_S,_C|_S,_C|_
www.eeworm.com/read/354342/10362363
c open.c
/*
* linux/lib/open.c
*
* (C) 1991 Linus Torvalds
*/
#define __LIBRARY__
#include
#include
int open(const char * filename, int flag, ...)
{
register int res;
va_list a
www.eeworm.com/read/354342/10362365
c close.c
/*
* linux/lib/close.c
*
* (C) 1991 Linus Torvalds
*/
#define __LIBRARY__
#include
_syscall1(int,close,int,fd)
www.eeworm.com/read/354342/10362382
c string.c
/*
* linux/lib/string.c
*
* (C) 1991 Linus Torvalds
*/
#ifndef __GNUC__
#error I want gcc!
#endif
#define extern
#define inline
#define __LIBRARY__
#include
www.eeworm.com/read/354342/10362386
c execve.c
/*
* linux/lib/execve.c
*
* (C) 1991 Linus Torvalds
*/
#define __LIBRARY__
#include
_syscall3(int,execve,const char *,file,char **,argv,char **,envp)
www.eeworm.com/read/352754/10514991
c setsid.c
/*
* linux/lib/setsid.c
*
* Copyright (C) 1991, 1992 Linus Torvalds
*/
#define __LIBRARY__
#include
#include
_syscall0(pid_t,setsid)
www.eeworm.com/read/352754/10514995
c dup.c
/*
* linux/lib/dup.c
*
* Copyright (C) 1991, 1992 Linus Torvalds
*/
#define __LIBRARY__
#include
_syscall1(int,dup,int,fd)
www.eeworm.com/read/352754/10514999
c write.c
/*
* linux/lib/write.c
*
* Copyright (C) 1991, 1992 Linus Torvalds
*/
#define __LIBRARY__
#include
#include
_syscall3(int,write,int,fd,const char *,
www.eeworm.com/read/352754/10515012
c close.c
/*
* linux/lib/close.c
*
* Copyright (C) 1991, 1992 Linus Torvalds
*/
#define __LIBRARY__
#include
_syscall1(int,close,int,fd)