summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrans Kaashoek <[email protected]>2017-08-08 19:42:51 -0400
committerFrans Kaashoek <[email protected]>2017-08-08 19:42:51 -0400
commitda3b931ddbc66da95b916b95e5258f3a506ac521 (patch)
tree87f855364222cb8a89772aa7d5e6213c37d996ad
parenta4ee6f7de32bfbd73499ac7da19e69ad0741e993 (diff)
downloadxv6-labs-da3b931ddbc66da95b916b95e5258f3a506ac521.tar.gz
xv6-labs-da3b931ddbc66da95b916b95e5258f3a506ac521.tar.bz2
xv6-labs-da3b931ddbc66da95b916b95e5258f3a506ac521.zip
Thanks Anton Burtsev <[email protected]>
-rw-r--r--kalloc.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/kalloc.c b/kalloc.c
index ca30d55..428c639 100644
--- a/kalloc.c
+++ b/kalloc.c
@@ -11,6 +11,7 @@
void freerange(void *vstart, void *vend);
extern char end[]; // first address after kernel loaded from ELF file
+ // defined by the kernel linker script in kernel.ld
struct run {
struct run *next;