diff options
author | Austin Clements <[email protected]> | 2010-09-02 04:15:17 -0400 |
---|---|---|
committer | Austin Clements <[email protected]> | 2010-09-02 04:15:17 -0400 |
commit | d8828817d72962a6220cb1fca315cab4bbf6d0a3 (patch) | |
tree | 018515d8e7ce0c6681121914fb9d78e9955025b3 /runoff.spec | |
parent | dd3ecd42cd6c8dee72e5212848cd8037d47f81dd (diff) | |
download | xv6-labs-d8828817d72962a6220cb1fca315cab4bbf6d0a3.tar.gz xv6-labs-d8828817d72962a6220cb1fca315cab4bbf6d0a3.tar.bz2 xv6-labs-d8828817d72962a6220cb1fca315cab4bbf6d0a3.zip |
Rearrange proc.h and proc.c to get our action-packed spreads back (mostly). They also make sense in this order, so it's not just for page layout.
Diffstat (limited to 'runoff.spec')
-rw-r--r-- | runoff.spec | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/runoff.spec b/runoff.spec index fe960ce..9d87528 100644 --- a/runoff.spec +++ b/runoff.spec @@ -20,22 +20,27 @@ sheet1: left even: bootasm.S # mild preference even: bootother.S # mild preference -even: bootmain.S # mild preference +even: bootmain.c # mild preference even: main.c # mp.c don't care at all # even: initcode.S # odd: init.c # spinlock.h either -left: spinlock.c # mild preference -even: proc.h # mild preference +left: spinlock.h # mild preference +even: spinlock.h # mild preference + +# This gets struct proc and allocproc on the same spread +right: proc.h +odd: proc.h # goal is to have two action-packed 2-page spreads, # one with -# allocproc userinit growproc fork +# userinit growproc fork exit wait # and another with # scheduler sched yield forkret sleep wakeup1 wakeup -right: proc.c # VERY important +left: proc.c # VERY important +odd: proc.c # VERY important # setjmp.S either # vm.c either |