diff options
author | Austin Clements <[email protected]> | 2010-08-31 16:26:08 -0400 |
---|---|---|
committer | Austin Clements <[email protected]> | 2010-08-31 16:26:08 -0400 |
commit | 7472b2b451f100162fa4542f5bfe260385f861ad (patch) | |
tree | 134b13a09008be741b55172bb065c00020fb5d2b /proc.c | |
parent | 04be8fb232ef0f1f52444b0e513a9a256c5a031f (diff) | |
download | xv6-labs-7472b2b451f100162fa4542f5bfe260385f861ad.tar.gz xv6-labs-7472b2b451f100162fa4542f5bfe260385f861ad.tar.bz2 xv6-labs-7472b2b451f100162fa4542f5bfe260385f861ad.zip |
Fix too-long lines
Diffstat (limited to 'proc.c')
-rw-r--r-- | proc.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -120,7 +120,8 @@ userinit(void) panic("userinit: out of memory?"); if (!allocuvm(p->pgdir, 0x0, (int)_binary_initcode_size)) panic("userinit: out of memory?"); - inituvm(p->pgdir, 0x0, _binary_initcode_start, (int)_binary_initcode_size); + inituvm(p->pgdir, 0x0, _binary_initcode_start, + (int)_binary_initcode_size); p->sz = PGROUNDUP((int)_binary_initcode_size); memset(p->tf, 0, sizeof(*p->tf)); p->tf->cs = (SEG_UCODE << 3) | DPL_USER; |