diff options
author | Robert Morris <[email protected]> | 2017-08-29 14:11:59 -0400 |
---|---|---|
committer | Robert Morris <[email protected]> | 2017-08-29 14:11:59 -0400 |
commit | 4638cabf8c52c5f08f83942103f2375d2ed46388 (patch) | |
tree | 0ff969a00aac465b9c04866b41697bc3e775f815 /lapic.c | |
parent | 164f4bae54286e1635b24efa03a1c565b9048b4a (diff) | |
download | xv6-labs-4638cabf8c52c5f08f83942103f2375d2ed46388.tar.gz xv6-labs-4638cabf8c52c5f08f83942103f2375d2ed46388.tar.bz2 xv6-labs-4638cabf8c52c5f08f83942103f2375d2ed46388.zip |
fix runoff complaints about pagination and long lines
Diffstat (limited to 'lapic.c')
-rw-r--r-- | lapic.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -43,13 +43,13 @@ volatile uint *lapic; // Initialized in mp.c +//PAGEBREAK! static void lapicw(int index, int value) { lapic[index] = value; lapic[ID]; // wait for write to finish, by reading } -//PAGEBREAK! void lapicinit(void) |