diff options
author | Robert Morris <[email protected]> | 2019-07-24 13:33:43 -0400 |
---|---|---|
committer | Robert Morris <[email protected]> | 2019-07-24 13:33:43 -0400 |
commit | a77287e9244ae5dac7060c0b8817bc195325af0c (patch) | |
tree | fbf856ce361a9bc75abe4c484ecaff324607dd71 /kernel/proc.c | |
parent | b4f89bb5290cff5926e5a735487b024f8314e028 (diff) | |
download | xv6-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.c | 3 |
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: |