diff options
author | Austin Clements <[email protected]> | 2010-09-02 04:03:42 -0400 |
---|---|---|
committer | Austin Clements <[email protected]> | 2010-09-02 04:03:42 -0400 |
commit | d2c7f6497810f05b961df11db75def7ea79b8ec2 (patch) | |
tree | 21ce14baaa0fcf9d8258a50ad55bb1709b657514 /runoff.spec | |
parent | 9d7a63e0734b4c7abe5ae00eda302e7d7a22a482 (diff) | |
download | xv6-labs-d2c7f6497810f05b961df11db75def7ea79b8ec2.tar.gz xv6-labs-d2c7f6497810f05b961df11db75def7ea79b8ec2.tar.bz2 xv6-labs-d2c7f6497810f05b961df11db75def7ea79b8ec2.zip |
I totally misunderstood the even/odd spec. Add some docs, remove my 'left+' hack, and orthogonalize left/right versus even/odd so you can specify them independently.
Diffstat (limited to 'runoff.spec')
-rw-r--r-- | runoff.spec | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/runoff.spec b/runoff.spec index 17bb821..a082193 100644 --- a/runoff.spec +++ b/runoff.spec @@ -1,5 +1,14 @@ sheet1: left +# "left" and "right" specify which page of a two-page spread a file +# must start on. "left" means that a file must start on the first of +# the two page. "right" means it must start on the second of the two +# pages. The file may start in either column. +# +# "even" and "odd" specify which column a file must start on. "even" +# means it must start in the left of the two columns. "odd" means it +# must start in the right of the two columns. + # types.h either # param.h either # defs.h either @@ -26,7 +35,7 @@ even: proc.h # mild preference # allocproc userinit growproc fork # and another with # scheduler sched yield forkret sleep wakeup1 wakeup -right+: proc.c # VERY important +right: proc.c # VERY important # setjmp.S either # vm.c either |