代码搜索:Linus
找到约 10,000 项符合「Linus」的源代码
代码结果 10,000
www.eeworm.com/read/114188/15069495
htm 00000113.htm
BBS水木清华站∶精华区
BBS水木清华站∶精华区
发信人: CuteGuy (这个春天有点冷), 信区: Linux
标 题: Potential&nbs
www.eeworm.com/read/187617/8615083
105133
Newsgroups: rec.motorcycles
Path: cantaloupe.srv.cs.cmu.edu!rochester!news.bbn.com!noc.near.net!howland.reston.ans.net!agate!linus!linus.mitre.org!mbunix.mitre.org!cookson
From: cookson@mbunix.mitre.o
www.eeworm.com/read/160303/5574944
sh umlsetup-sample.sh
#!/bin/sh
# This is the configuration file that helps setup for
# a kernel pool for UML compilation w/FreeSWAN.
#
# Copy this file to the top of your FreeSWAN source directory as
# umlsetup.sh, edit
www.eeworm.com/read/291779/8396436
c ctype.c
/*
* linux/lib/ctype.c
*
479
* (C) 1991 Linus Torvalds
*/
#include // 字符类型头文件。定义了一些有关字符类型判断和转换的宏。
char _ctmp; // 一个临时字符变量,供ctype.h 文件中转换字符宏函数使用。
// 字符特性数组(表),定义了各个字符对应的属性,这些属性类型(如_C 等)在
www.eeworm.com/read/291779/8396448
c string.c
/*
* linux/lib/string.c
*
* (C) 1991 Linus Torvalds
*/
#ifndef __GNUC__ // 需要GNU 的C 编译器编译。
#error I want gcc!
#endif
#define extern
#define inline
#define __LIBRARY__
#include
www.eeworm.com/read/291498/8412335
c dup.c
/*
* linux/lib/dup.c
*
* (C) 1991 Linus Torvalds
*/
#define __LIBRARY__
#include
_syscall1(int,dup,int,fd)
www.eeworm.com/read/291498/8412338
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/291498/8412340
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/291498/8412347
c close.c
/*
* linux/lib/close.c
*
* (C) 1991 Linus Torvalds
*/
#define __LIBRARY__
#include
_syscall1(int,close,int,fd)