02 2012 档案
block list of grub (e.g. chainloader +1)
摘要:http://www.gnu.org/software/grub/manual/html_node/Block-list-syntax.html11.3 How to specify block listsA block list is used for specifying a file that doesn't appear in the filesystem, like a chainloader. The syntax is[offset]+length[,[offset]+length].... Here is an example: 0+100,200+1,300+300T 阅读全文
posted @ 2012-02-27 11:27 lbsx 阅读(609) 评论(0) 推荐(0)
Memory Layout of C Programs
摘要:from apue7.6. Memory Layout of a C ProgramA typical memory representation of C program consists of following sections.1. Text segment2. Initialized data segment 2.1 initialized read-only area 2.2 initialized read-write area3. Uninitialized data segment4. Heap5.StackReadMemory Layout of C Programsf.. 阅读全文
posted @ 2012-02-24 14:46 lbsx 阅读(395) 评论(0) 推荐(0)