diff options
author | Frans Kaashoek <[email protected]> | 2016-09-02 14:59:00 -0400 |
---|---|---|
committer | Frans Kaashoek <[email protected]> | 2016-09-02 14:59:00 -0400 |
commit | b7fed77b7be4608b2ce6233a594c4fd7935e62c7 (patch) | |
tree | d02dd80dd5ec7c162f973e1fd9cf692c968bdc0a /console.c | |
parent | 5f03799f84796f057924584cc64cf7f3b5ccd75f (diff) | |
download | xv6-labs-b7fed77b7be4608b2ce6233a594c4fd7935e62c7.tar.gz xv6-labs-b7fed77b7be4608b2ce6233a594c4fd7935e62c7.tar.bz2 xv6-labs-b7fed77b7be4608b2ce6233a594c4fd7935e62c7.zip |
Fix a few lines that runoff is complaining about that they are too long
Diffstat (limited to 'console.c')
-rw-r--r-- | console.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -195,7 +195,8 @@ consoleintr(int (*getc)(void)) while((c = getc()) >= 0){ switch(c){ case C('P'): // Process listing. - doprocdump = 1; // procdump() locks cons.lock indirectly; invoke later + // procdump() locks cons.lock indirectly; invoke later + doprocdump = 1; break; case C('U'): // Kill line. while(input.e != input.w && |