亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? linux-0.11-040327-rh9.diff

?? LINUX的0.11YU REDHAT9.2配置區別
?? DIFF
?? 第 1 頁 / 共 3 頁
字號:
<          return __base;< }Only in linux/include/linux: sched.h.cur1Only in linux/include/linux: sched.h.olddiff -r linux/include/string.h linux.org/include/string.h34c34< 	::"S" (src),"D" (dest));---> 	::"S" (src),"D" (dest):"si","di","ax");38c38< static inline char * strncpy(char * dest,const char *src,int count)---> extern inline char * strncpy(char * dest,const char *src,int count)50c50< 	::"S" (src),"D" (dest),"c" (count));---> 	::"S" (src),"D" (dest),"c" (count):"si","di","ax","cx");64c64< 	::"S" (src),"D" (dest),"a" (0),"c" (0xffffffff));---> 	::"S" (src),"D" (dest),"a" (0),"c" (0xffffffff):"si","di","ax","cx");68c68< static inline char * strncat(char * dest,const char * src,int count)---> extern inline char * strncat(char * dest,const char * src,int count)84c84< 	);---> 	:"si","di","ax","cx");90c90< register int __res ;---> register int __res __asm__("ax");103c103< 	:"=a" (__res):"D" (cs),"S" (ct));---> 	:"=a" (__res):"D" (cs),"S" (ct):"si","di");107c107< static inline int strncmp(const char * cs,const char * ct,int count)---> extern inline int strncmp(const char * cs,const char * ct,int count)109c109< register int __res ;---> register int __res __asm__("ax");124c124< 	:"=a" (__res):"D" (cs),"S" (ct),"c" (count));---> 	:"=a" (__res):"D" (cs),"S" (ct),"c" (count):"si","di","cx");128c128< static inline char * strchr(const char * s,char c)---> extern inline char * strchr(const char * s,char c)130c130< register char * __res ;---> register char * __res __asm__("ax");141c141< 	:"=a" (__res):"S" (s),"0" (c));---> 	:"=a" (__res):"S" (s),"0" (c):"si");145c145< static inline char * strrchr(const char * s,char c)---> extern inline char * strrchr(const char * s,char c)147c147< register char * __res; ---> register char * __res __asm__("dx");157c157< 	:"=d" (__res):"0" (0),"S" (s),"a" (c));---> 	:"=d" (__res):"0" (0),"S" (s),"a" (c):"ax","si");163c163< register char * __res;---> register char * __res __asm__("si");181c181< 	);---> 	:"ax","cx","dx","di");187c187< register char * __res;---> register char * __res __asm__("si");205c205< 	);---> 	:"ax","cx","dx","di");211c211< register char * __res ;---> register char * __res __asm__("si");232c232< 	);---> 	:"ax","cx","dx","di");238c238< register char * __res ;---> register char * __res __asm__("ax");259c259< 	);---> 	:"cx","dx","di","si");265c265< register int __res ;---> register int __res __asm__("cx");271c271< 	:"=c" (__res):"D" (s),"a" (0),"0" (0xffffffff));---> 	:"=c" (__res):"D" (s),"a" (0),"0" (0xffffffff):"di");279c279< register char * __res ;---> register char * __res __asm__("si");332c332< 	);---> 	:"ax","cx","dx","di");336c336< static inline void * memcpy(void * dest,const void * src, int n)---> extern inline void * memcpy(void * dest,const void * src, int n)342c342< 	);---> 	:"cx","si","di");353c353< 	);---> 	:"cx","si","di");359c359< 	);---> 	:"cx","si","di");363c363< static inline int memcmp(const void * cs,const void * ct,int count)---> extern inline int memcmp(const void * cs,const void * ct,int count)365c365< register int __res ;---> register int __res __asm__("ax");375c375< 	);---> 	:"si","di","cx");381c381< register void * __res ;---> register void * __res __asm__("di");391c391< 	);---> 	:"cx");395c395< static inline void * memset(void * s,char c,int count)---> extern inline void * memset(void * s,char c,int count)401c401< 	);---> 	:"cx","di");diff -r linux/kernel/asm.s linux.org/kernel/asm.s14,17c14,17< .globl divide_error,debug,nmi,int3,overflow,bounds,invalid_op< .globl double_fault,coprocessor_segment_overrun< .globl invalid_TSS,segment_not_present,stack_segment< .globl general_protection,coprocessor_error,irq13,reserved---> .globl _divide_error,_debug,_nmi,_int3,_overflow,_bounds,_invalid_op> .globl _double_fault,_coprocessor_segment_overrun> .globl _invalid_TSS,_segment_not_present,_stack_segment> .globl _general_protection,_coprocessor_error,_irq13,_reserved19,20c19,20< divide_error:< 	pushl $do_divide_error---> _divide_error:> 	pushl $_do_divide_error53,54c53,54< debug:< 	pushl $do_int3		# _do_debug---> _debug:> 	pushl $_do_int3		# _do_debug57,58c57,58< nmi:< 	pushl $do_nmi---> _nmi:> 	pushl $_do_nmi61,62c61,62< int3:< 	pushl $do_int3---> _int3:> 	pushl $_do_int365,66c65,66< overflow:< 	pushl $do_overflow---> _overflow:> 	pushl $_do_overflow69,70c69,70< bounds:< 	pushl $do_bounds---> _bounds:> 	pushl $_do_bounds73,74c73,74< invalid_op:< 	pushl $do_invalid_op---> _invalid_op:> 	pushl $_do_invalid_op77,78c77,78< coprocessor_segment_overrun:< 	pushl $do_coprocessor_segment_overrun---> _coprocessor_segment_overrun:> 	pushl $_do_coprocessor_segment_overrun81,82c81,82< reserved:< 	pushl $do_reserved---> _reserved:> 	pushl $_do_reserved85c85< irq13:---> _irq13:95c95< 	jmp coprocessor_error---> 	jmp _coprocessor_error97,98c97,98< double_fault:< 	pushl $do_double_fault---> _double_fault:> 	pushl $_do_double_fault131,132c131,132< invalid_TSS:< 	pushl $do_invalid_TSS---> _invalid_TSS:> 	pushl $_do_invalid_TSS135,136c135,136< segment_not_present:< 	pushl $do_segment_not_present---> _segment_not_present:> 	pushl $_do_segment_not_present139,140c139,140< stack_segment:< 	pushl $do_stack_segment---> _stack_segment:> 	pushl $_do_stack_segment143,144c143,144< general_protection:< 	pushl $do_general_protection---> _general_protection:> 	pushl $_do_general_protectiondiff -r linux/kernel/blk_drv/blk.h linux.org/kernel/blk_drv/blk.h41c41< ((s1)->cmd<(s2)->cmd || ((s1)->cmd==(s2)->cmd && \---> ((s1)->cmd<(s2)->cmd || (s1)->cmd==(s2)->cmd && \43c43< (s1)->sector < (s2)->sector))))---> (s1)->sector < (s2)->sector)))101c101< static inline void unlock_buffer(struct buffer_head * bh)---> extern inline void unlock_buffer(struct buffer_head * bh)109c109< static inline void end_request(int uptodate)---> extern inline void end_request(int uptodate)diff -r linux/kernel/blk_drv/floppy.c linux.org/kernel/blk_drv/floppy.c158c158< 	)---> 	:"cx","di","si")diff -r linux/kernel/blk_drv/hd.c linux.org/kernel/blk_drv/hd.c62c62< __asm__("cld;rep;insw"::"d" (port),"D" (buf),"c" (nr))---> __asm__("cld;rep;insw"::"d" (port),"D" (buf),"c" (nr):"cx","di")65c65< __asm__("cld;rep;outsw"::"d" (port),"S" (buf),"c" (nr))---> __asm__("cld;rep;outsw"::"d" (port),"S" (buf),"c" (nr):"cx","si")211c211< 	if (i == (READY_STAT | SEEK_STAT))---> 	if (i == READY_STAT | SEEK_STAT)296c296< 	int i,r = 0;---> 	int i,r;diff -r linux/kernel/blk_drv/ll_rw_blk.c linux.org/kernel/blk_drv/ll_rw_blk.c79c79< 		if ((IN_ORDER(tmp,req) || ---> 		if ((IN_ORDER(tmp,req) ||95c95< 	if ((rw_ahead = (rw == READA || rw == WRITEA))) {---> 	if (rw_ahead = (rw == READA || rw == WRITEA)) {diff -r linux/kernel/blk_drv/Makefile linux.org/kernel/blk_drv/Makefile9,11c9,11< AR	=ar< AS	=as< LD	=ld---> AR	=gar> AS	=gas> LD	=gld13,15c13,15< CC	=gcc -mcpu=i386< CFLAGS	=-Wall -O -fstrength-reduce -fomit-frame-pointer  \< 	-finline-functions -nostdinc -I../../include---> CC	=gcc> CFLAGS	=-Wall -O -fstrength-reduce -fomit-frame-pointer -fcombine-regs \> 	-finline-functions -mstring-insns -nostdinc -I../../include22c22< 	$(AS) -o $*.o $<---> 	$(AS) -c -o $*.o $<44,47c44,52< floppy.s floppy.o: floppy.c ../../include/linux/sched.h ../../include/linux/head.h \<   ../../include/linux/fs.h ../../include/sys/types.h \<   ../../include/linux/mm.h ../../include/signal.h \<   ../../include/linux/kernel.h ../../include/linux/fdreg.h \---> floppy.s floppy.o : floppy.c ../../include/linux/sched.h ../../include/linux/head.h \>   ../../include/linux/fs.h ../../include/sys/types.h ../../include/linux/mm.h \>   ../../include/signal.h ../../include/linux/kernel.h \>   ../../include/linux/fdreg.h ../../include/asm/system.h \>   ../../include/asm/io.h ../../include/asm/segment.h blk.h > hd.s hd.o : hd.c ../../include/linux/config.h ../../include/linux/sched.h \>   ../../include/linux/head.h ../../include/linux/fs.h \>   ../../include/sys/types.h ../../include/linux/mm.h ../../include/signal.h \>   ../../include/linux/kernel.h ../../include/linux/hdreg.h \49,50c54,55<   ../../include/asm/segment.h blk.h< hd.s hd.o: hd.c ../../include/linux/config.h ../../include/linux/sched.h \--->   ../../include/asm/segment.h blk.h > ll_rw_blk.s ll_rw_blk.o : ll_rw_blk.c ../../include/errno.h ../../include/linux/sched.h \52,66c57,58<   ../../include/sys/types.h ../../include/linux/mm.h \<   ../../include/signal.h ../../include/linux/kernel.h \<   ../../include/linux/hdreg.h ../../include/asm/system.h \<   ../../include/asm/io.h ../../include/asm/segment.h blk.h< ll_rw_blk.s ll_rw_blk.o: ll_rw_blk.c ../../include/errno.h \<   ../../include/linux/sched.h ../../include/linux/head.h \<   ../../include/linux/fs.h ../../include/sys/types.h \<   ../../include/linux/mm.h ../../include/signal.h \<   ../../include/linux/kernel.h ../../include/asm/system.h blk.h< ramdisk.s ramdisk.o: ramdisk.c ../../include/string.h ../../include/linux/config.h \<   ../../include/linux/sched.h ../../include/linux/head.h \<   ../../include/linux/fs.h ../../include/sys/types.h \<   ../../include/linux/mm.h ../../include/signal.h \<   ../../include/linux/kernel.h ../../include/asm/system.h \<   ../../include/asm/segment.h ../../include/asm/memory.h blk.h--->   ../../include/sys/types.h ../../include/linux/mm.h ../../include/signal.h \>   ../../include/linux/kernel.h ../../include/asm/system.h blk.h diff -r linux/kernel/chr_drv/console.c linux.org/kernel/chr_drv/console.c119c119< 					"movl video_num_columns,%1\n\t"---> 					"movl _video_num_columns,%1\n\t"126c126< 					);---> 					:"cx","di","si");137c137< 					);---> 					:"cx","di");144c144< 				"movl video_num_columns,%%ecx\n\t"---> 				"movl _video_num_columns,%%ecx\n\t"151c151< 				);---> 				:"cx","di","si");159c159< 			"movl video_num_columns,%%ecx\n\t"---> 			"movl _video_num_columns,%%ecx\n\t"166c166< 			);---> 			:"cx","di","si");178c178< 			"movl video_num_columns,%%ecx\n\t"---> 			"movl _video_num_columns,%%ecx\n\t"185c185< 			);---> 			:"ax","cx","di","si");193c193< 			"movl video_num_columns,%%ecx\n\t"---> 			"movl _video_num_columns,%%ecx\n\t"200c200< 			);---> 			:"ax","cx","di","si");241,242c241,242< 	long count;< 	long start;---> 	long count __asm__("cx");> 	long start __asm__("di");265c265< 		);---> 		:"cx","di");270,271c270,271< 	long count;< 	long start;---> 	long count __asm__("cx");> 	long start __asm__("di");296c296< 		);---> 		:"cx","di");461c461< 					__asm__("movb attr,%%ah\n\t"---> 					__asm__("movb _attr,%%ah\n\t"464c464< 						);---> 						:"ax");515c515< 				if ((ques=(c=='?')))---> 				if (ques=(c=='?'))diff -r linux/kernel/chr_drv/keyboard.S linux.org/kernel/chr_drv/keyboard.S16c16< .globl keyboard_interrupt---> .globl _keyboard_interrupt37c37< keyboard_interrupt:---> _keyboard_interrupt:47c47< 	xor %al,%al		/* %eax is scan code */---> 	xorl %al,%al		/* %eax is scan code */69c69< 	call do_tty_interrupt---> 	call _do_tty_interrupt91c91< 	movl table_list,%edx		# read-queue for console---> 	movl _table_list,%edx		# read-queue for console214c214< 	call show_stat---> 	call _show_statdiff -r linux/kernel/chr_drv/Makefile linux.org/kernel/chr_drv/Makefile9,11c9,11< AR	=ar< AS	=as< LD	=ld---> AR	=gar> AS	=gas> LD	=gld13,15c13,15< CC	=gcc -mcpu=i386< CFLAGS	=-Wall -O -fstrength-reduce -fomit-frame-pointer \< 	-finline-functions -nostdinc -I../../include---> CC	=gcc> CFLAGS	=-Wall -O -fstrength-reduce -fomit-frame-pointer -fcombine-regs \> 	-finline-functions -mstring-insns -nostdinc -I../../include22c22< 	$(AS) -o $*.o $<---> 	$(AS) -c -o $*.o $<48c48< console.s console.o: console.c ../../include/linux/sched.h \---> console.s console.o : console.c ../../include/linux/sched.h \50,54c50,53<   ../../include/sys/types.h ../../include/linux/mm.h \<   ../../include/signal.h ../../include/linux/tty.h \<   ../../include/termios.h ../../include/asm/io.h \<   ../../include/asm/system.h< serial.s serial.o: serial.c ../../include/linux/tty.h ../../include/termios.h \--->   ../../include/sys/types.h ../../include/linux/mm.h ../../include/signal.h \>   ../../include/linux/tty.h ../../include/termios.h ../../include/asm/io.h \>   ../../include/asm/system.h 

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
麻豆91精品视频| 91成人在线精品| 91小视频免费观看| 欧美一区二区三区白人| 亚洲国产高清aⅴ视频| 日韩中文字幕不卡| voyeur盗摄精品| 欧美精品一区在线观看| 亚洲午夜私人影院| 成人三级伦理片| 精品国产自在久精品国产| 一区二区在线免费| 成人免费av资源| 欧美成人aa大片| 天天色 色综合| 色哟哟在线观看一区二区三区| 日韩欧美久久一区| 午夜天堂影视香蕉久久| 色婷婷亚洲综合| 亚洲色图.com| 91在线国产福利| 国产精品麻豆久久久| 国产精品资源网| 欧美精品一区二区三区一线天视频 | 日韩免费一区二区| 亚洲一区二区三区在线| caoporn国产精品| 国产精品青草久久| 国产iv一区二区三区| 久久久久久久久久久久久久久99 | 精品国产乱码久久久久久久久| 亚洲va欧美va天堂v国产综合| 一本久久a久久免费精品不卡| 国产精品日日摸夜夜摸av| 国产成人在线视频免费播放| 国产女同性恋一区二区| 国产乱人伦偷精品视频不卡| 精品捆绑美女sm三区| 韩国成人福利片在线播放| 日韩欧美国产成人一区二区| 精品在线一区二区| 国产视频一区不卡| 不卡av免费在线观看| 国产精品精品国产色婷婷| av在线这里只有精品| 亚洲欧美日韩中文播放| 欧美偷拍一区二区| 蜜臀av一区二区在线免费观看| 欧美丰满美乳xxx高潮www| 免费观看一级欧美片| 久久亚洲欧美国产精品乐播| 成人精品电影在线观看| 亚洲精品久久7777| 欧美无乱码久久久免费午夜一区| 三级成人在线视频| 精品久久久久久久久久久久包黑料| 国产精品一区二区无线| 国产精品福利电影一区二区三区四区| av在线不卡电影| 亚洲成年人影院| 久久综合国产精品| 一本色道**综合亚洲精品蜜桃冫| 亚洲国产精品天堂| 久久久国产精华| 在线国产电影不卡| 精品亚洲国内自在自线福利| 中文字幕第一区| 欧美性生活大片视频| 精品一区二区三区在线视频| 中文字幕在线不卡| 欧美一区二区视频观看视频| 国产91精品久久久久久久网曝门| 一区二区三区丝袜| 亚洲精品一区二区三区精华液| 91色九色蝌蚪| 韩国女主播一区二区三区| 亚洲精品综合在线| 精品国产91洋老外米糕| 91成人在线免费观看| 国产美女娇喘av呻吟久久| 亚洲乱码中文字幕综合| 欧美videos大乳护士334| 色综合中文字幕国产 | 久久亚洲二区三区| 欧美性xxxxx极品少妇| 国产福利一区二区三区视频在线 | 国产亚洲成年网址在线观看| 在线亚洲一区二区| 岛国av在线一区| 蜜桃视频一区二区| 亚洲午夜久久久久久久久电影院 | 日韩欧美一区中文| 91国模大尺度私拍在线视频| 国产一区二区精品久久91| 首页综合国产亚洲丝袜| 亚洲欧美一区二区在线观看| 精品国产青草久久久久福利| 欧美日韩一二区| 91麻豆国产香蕉久久精品| 成人深夜在线观看| 国产精品18久久久久久久网站| 午夜精品久久久久久久| 综合激情成人伊人| 中文字幕欧美激情| 久久你懂得1024| 欧美变态口味重另类| 91精品婷婷国产综合久久| 在线免费一区三区| 一本色道久久综合亚洲aⅴ蜜桃 | 琪琪一区二区三区| 性做久久久久久免费观看| 最近日韩中文字幕| 中文字幕日韩一区| 亚洲欧美综合色| 久久欧美一区二区| 国产日韩成人精品| 久久婷婷成人综合色| 久久久久久电影| 国产日韩欧美麻豆| 久久精品亚洲乱码伦伦中文 | 国产精品99久久久久久似苏梦涵| 久久99精品网久久| 激情五月婷婷综合| 极品少妇一区二区| 国产一区不卡视频| 成人动漫在线一区| 欧美日韩午夜精品| 欧美日韩久久不卡| 3d成人动漫网站| 欧美一区二区精品在线| 日韩精品一区二区三区中文不卡 | 精品精品国产高清a毛片牛牛| 日韩视频免费观看高清完整版| 日韩亚洲欧美一区| 国产日韩三级在线| 日韩理论片网站| 五月天婷婷综合| 另类小说图片综合网| 国产成人av网站| 91蝌蚪porny| 欧美久久久久久久久中文字幕| 日韩美女在线视频| 欧美国产丝袜视频| 亚洲午夜电影网| 国产一区二区三区国产| 91免费版在线| 日韩视频国产视频| 亚洲天堂a在线| 日日夜夜免费精品| 国产成人综合在线播放| 色婷婷久久久综合中文字幕| 91精品国产91久久综合桃花| 国产亚洲综合av| 一级中文字幕一区二区| 久久99久国产精品黄毛片色诱| 国产a视频精品免费观看| 精品视频123区在线观看| 久久久精品欧美丰满| 亚洲一区二区综合| 国产一区二区三区免费看| 欧美亚洲自拍偷拍| 久久精品欧美一区二区三区麻豆| 亚洲午夜久久久久| 国产成人精品免费在线| 欧美色精品天天在线观看视频| 2022国产精品视频| 亚洲国产视频在线| 成人av在线观| 日韩视频在线你懂得| 亚洲免费大片在线观看| 韩国成人精品a∨在线观看| 欧美视频一区在线观看| 国产清纯白嫩初高生在线观看91 | 91麻豆成人久久精品二区三区| 日韩欧美成人午夜| 亚洲国产成人av网| 97se亚洲国产综合自在线| 欧美xxxxxxxxx| 五月综合激情婷婷六月色窝| 不卡的av网站| 日本一区二区三区四区 | 日韩欧美国产1| 亚洲一区二区欧美激情| eeuss鲁片一区二区三区| 久久久久综合网| 激情丁香综合五月| 日韩欧美高清在线| 秋霞午夜av一区二区三区| 欧美视频在线一区| 伊人婷婷欧美激情| 99久久精品国产网站| 国产精品天美传媒| 成人看片黄a免费看在线| 久久久久久电影| 国产成人在线看| 国产日韩欧美一区二区三区乱码| 激情文学综合丁香| 欧美精品一区二区三| 国产一二三精品| 国产精品午夜久久|