代码搜索:Torvalds

找到约 10,000 项符合「Torvalds」的源代码

代码结果 10,000
www.eeworm.com/read/255541/12074842

c errno.c

/* * linux/lib/errno.c * * Copyright (C) 1991, 1992 Linus Torvalds */ int errno;
www.eeworm.com/read/151583/12198733

txt 151.txt

据外电报道,一款在某个强大的高科技集团资助下研制成功并且在研制期间被严格保密的计算机芯片不久就要问世了。这款芯片是总部位于美国圣克拉拉市的特兰斯梅塔公司(Transmeta Corp.)在首席执行官大卫·迪泽尔(David Ditzel)的领导下历时五年研制的。迪泽尔曾在美国电话电报公司的贝尔实验室和太阳微系统公司担任芯片设计师。该公司日前通知记者和业界分析家,将于本周三正式展出“世界上第一套以软 ...
www.eeworm.com/read/250172/12426600

c dup.c

/* * linux/lib/dup.c * * (C) 1991 Linus Torvalds */ #define __LIBRARY__ #include _syscall1(int,dup,int,fd)
www.eeworm.com/read/250172/12426602

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/250172/12426605

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/250172/12426608

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/250172/12426611

c close.c

/* * linux/lib/close.c * * (C) 1991 Linus Torvalds */ #define __LIBRARY__ #include _syscall1(int,close,int,fd)
www.eeworm.com/read/250172/12426623

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/250172/12426625

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/131256/14154026

c ctype.c

/* * linux/lib/ctype.c * 479 * (C) 1991 Linus Torvalds */ #include // 字符类型头文件。定义了一些有关字符类型判断和转换的宏。 char _ctmp; // 一个临时字符变量,供ctype.h 文件中转换字符宏函数使用。 // 字符特性数组(表),定义了各个字符对应的属性,这些属性类型(如_C 等)在