diff options
| author | Robert Morris | 2017-08-29 14:11:59 -0400 |
|---|---|---|
| committer | Robert Morris | 2017-08-29 14:11:59 -0400 |
| commit | 4638cabf8c52c5f08f83942103f2375d2ed46388 (patch) | |
| tree | 0ff969a00aac465b9c04866b41697bc3e775f815 /vm.c | |
| parent | 164f4bae54286e1635b24efa03a1c565b9048b4a (diff) | |
fix runoff complaints about pagination and long lines
Diffstat (limited to 'vm.c')
| -rw-r--r-- | vm.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -164,7 +164,8 @@ switchuvm(struct proc *p) panic("switchuvm: no pgdir"); pushcli(); - mycpu()->gdt[SEG_TSS] = SEG16(STS_T32A, &mycpu()->ts, sizeof(mycpu()->ts)-1, 0); + mycpu()->gdt[SEG_TSS] = SEG16(STS_T32A, &mycpu()->ts, + sizeof(mycpu()->ts)-1, 0); mycpu()->gdt[SEG_TSS].s = 0; mycpu()->ts.ss0 = SEG_KDATA << 3; mycpu()->ts.esp0 = (uint)p->kstack + KSTACKSIZE; |
