diff options
author | Frans Kaashoek <[email protected]> | 2018-10-03 20:14:36 -0400 |
---|---|---|
committer | Frans Kaashoek <[email protected]> | 2018-10-03 20:14:36 -0400 |
commit | 7ccc5f5f4f69c8f1f16f2eda534ff9893ff2226b (patch) | |
tree | e232e5fff0e16f33bc99be29926124a37aaabb90 /trap.c | |
parent | eb72653bd7a1dec89a79af3c377c3abf8df2064a (diff) | |
download | xv6-labs-7ccc5f5f4f69c8f1f16f2eda534ff9893ff2226b.tar.gz xv6-labs-7ccc5f5f4f69c8f1f16f2eda534ff9893ff2226b.tar.bz2 xv6-labs-7ccc5f5f4f69c8f1f16f2eda534ff9893ff2226b.zip |
Names of text are better.
Diffstat (limited to 'trap.c')
-rw-r--r-- | trap.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -20,7 +20,7 @@ tvinit(void) int i; for(i=0; i<256; i++) { - idt[i] = INTDESC(KCSEG, vectors[i], INT_P | SEG_INTR64); + idt[i] = INTDESC(SEG_KCODE, vectors[i], INT_P | SEG_INTR64); } idtinit(); |