git://scm.lunaixsky.com
/
lunaix-os.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Kernel address space isolation and make the kernel heap global to all processes.
[lunaix-os.git]
/
lunaix-os
/
link
/
linker.ld
diff --git
a/lunaix-os/link/linker.ld
b/lunaix-os/link/linker.ld
index a81dad551c1dce19da6e2cea25ce1984b6c00ea0..ce236c0c6ebbb01fc17c565a5e4d04b99579f833 100644
(file)
--- a/
lunaix-os/link/linker.ld
+++ b/
lunaix-os/link/linker.ld
@@
-61,5
+61,9
@@
SECTIONS {
}
__kernel_end = ALIGN(4K);
+ __pg_mount_point = ALIGN(4K);
+ . += 16K;
+ __proc_table = ALIGN(4K);
+ . += 128M;
__kernel_heap_start = ALIGN(4K); /* 内核结束的地方即堆开始的地方 */
}
\ No newline at end of file