代码搜索:Torvalds
找到约 10,000 项符合「Torvalds」的源代码
代码结果 10,000
www.eeworm.com/read/168830/9896665
txt linux高手是怎样“练”成的.txt
Linux高手是怎样“练”成的
现在是使用Linux的时候了。
这个免费的开放源代码操作系统正以狂风暴雨之势袭卷着整个世界,它不仅出现在企业服务器和专业怪才们的讨论组中,也开始在家用PC机上生根了。Linux的普及程度正在与日俱增,因此我们想,大概已是让我们帮你掌握Linux的时候了。
Linux并不适合电脑新手,但只要有耐心,再加上ZDNET China“商务应用”频道 ...
www.eeworm.com/read/164767/10089379
cc ctype.cc
/*
* linux/lib/ctype.c
*
* Copyright (C) 1991, 1992 Linus Torvalds
*/
#include
char _ctmp;
unsigned char _ctype[] = {0x00, /* EOF */
_C,_C,_C,_C,_C,_C,_C,_C, /* 0-7 */
_C,_C
www.eeworm.com/read/163079/10175313
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/163079/10175314
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/163079/10175315
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/163079/10175318
c close.c
/*
* linux/lib/close.c
*
* Copyright (C) 1991, 1992 Linus Torvalds
*/
#define __LIBRARY__
#include
_syscall1(int,close,int,fd)
www.eeworm.com/read/163079/10175326
c string.c
/*
* linux/lib/string.c
*
* Copyright (C) 1991, 1992 Linus Torvalds
*/
#ifndef __GNUC__
#error I want gcc!
#endif
#include
#define extern
#define inline
#define
www.eeworm.com/read/163079/10175328
c execve.c
/*
* linux/lib/execve.c
*
* Copyright (C) 1991, 1992 Linus Torvalds
*/
#define __LIBRARY__
#include
_syscall3(int,execve,const char *,file,char **,argv,char **,envp)
www.eeworm.com/read/163079/10175330
c errno.c
/*
* linux/lib/errno.c
*
* Copyright (C) 1991, 1992 Linus Torvalds
*/
int errno;
www.eeworm.com/read/354342/10362340
c dup.c
/*
* linux/lib/dup.c
*
* (C) 1991 Linus Torvalds
*/
#define __LIBRARY__
#include
_syscall1(int,dup,int,fd)