8000 GitHub - pdewar/XV6: Kernel hacking in xv6
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

pdewar/XV6

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 

Repository files navigation

The xv6 address space is originally set up like this:

code

guard page (inaccessible, one page)

stack (fixed-sized, one page)

heap (grows towards the high-end of the address space)

I rearranged the address space to look more like Linux:

code

heap (grows towards the high-end of the address space)

... (gap)

stack (at end of address space; grows backward)

My implementation has a test program called stacktester
that shows it works. For more info on the tests that are
run have a look at the source code located in the root directory.

About

Kernel hacking in xv6

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
0