summaryrefslogtreecommitdiff
path: root/kernel/proc.c
diff options
context:
space:
mode:
authorRobert Morris <[email protected]>2019-07-24 13:33:43 -0400
committerRobert Morris <[email protected]>2019-07-24 13:33:43 -0400
commita77287e9244ae5dac7060c0b8817bc195325af0c (patch)
treefbf856ce361a9bc75abe4c484ecaff324607dd71 /kernel/proc.c
parentb4f89bb5290cff5926e5a735487b024f8314e028 (diff)
downloadxv6-labs-a77287e9244ae5dac7060c0b8817bc195325af0c.tar.gz
xv6-labs-a77287e9244ae5dac7060c0b8817bc195325af0c.tar.bz2
xv6-labs-a77287e9244ae5dac7060c0b8817bc195325af0c.zip
no more PAGEBREAK
Diffstat (limited to 'kernel/proc.c')
-rw-r--r--kernel/proc.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/kernel/proc.c b/kernel/proc.c
index 5ce31c7..57cefe4 100644
--- a/kernel/proc.c
+++ b/kernel/proc.c
@@ -83,7 +83,6 @@ allocpid() {
return pid;
}
-//PAGEBREAK: 32
// Look in the process table for an UNUSED proc.
// If found, initialize state required to run in the kernel,
// and return with p->lock held.
@@ -192,7 +191,6 @@ uchar initcode[] = {
0x00, 0x00, 0x00
};
-//PAGEBREAK: 32
// Set up first user process.
void
userinit(void)
@@ -405,7 +403,6 @@ wait(void)
}
}
-//PAGEBREAK: 42
// Per-CPU process scheduler.
// Each CPU calls scheduler() after setting itself up.
// Scheduler never returns. It loops, doing: