个人信息
状态: 离线
雨丝风片
日历
« 2008-10  
   1234
567891011
12131415161718
19202122232425
262728293031 
回复
收藏的论坛
文集
主题
kernel的入口地址是/sys/i386/i386/locore.s中定义的btext:200/**********************************************************************201*202* This is where the bootblocks start us, set the ball rolling...203*204*/205NON_GPROF_ENTRY(btext)从/boot/kernel/kernel中可以 ...
查看(1593) | 回复(16) | 收藏
init386之前的地址空间和页表结构是在/sys/i386/i386/locore.s中建立的。相关过程的分析笔记参见http://bbs.chinaunix.net/thread-1254867-1-1.html。页表相关宏值定义的含义参见http://bbs.chinaunix.net/thread-1254863-1-1.html。
查看(1367) | 回复(12) | 收藏
/sys/i386/include/pmap.h中定义的宏值:94/*95* Size of Kernel address space.This is the number of page table pages96* (4MB each) to use for the kernel.256 pages == 1 Gigabyte.97* This **MUST** be a multiple of 4 (eg: 252, 256, 260, etc).98*/99#ifndef KVA_P ...
查看(773) | 回复(3) | 收藏

本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/9831/showart_1149556.html
查看(119) | 回复(0) | 收藏
kernel的入口地址是/sys/i386/i386/locore.s中定义的btext:
200/**********************************************************************
201*
202* This is where the bootblocks start us, set the ball rolling...
203*
204*/
205NON_GPROF_ENTRY(btext)
从/boot/kernel/kernel中可以读出btext的 ...
查看(127) | 回复(0) | 收藏