diff options
author | Robert Morris <[email protected]> | 2019-06-04 10:43:45 -0400 |
---|---|---|
committer | Robert Morris <[email protected]> | 2019-06-04 10:43:45 -0400 |
commit | 0e131b226336808c135795f5b9d7defc5a58b2ae (patch) | |
tree | 226cf0c8f1043d99175aee8835baf570cdf662e6 /trap.c | |
parent | b78894f34ebbceb23bcf36ff820fefb942b54ccf (diff) | |
download | xv6-labs-0e131b226336808c135795f5b9d7defc5a58b2ae.tar.gz xv6-labs-0e131b226336808c135795f5b9d7defc5a58b2ae.tar.bz2 xv6-labs-0e131b226336808c135795f5b9d7defc5a58b2ae.zip |
fix a problem with end. make uartputc() wait until h/w is ready.
Diffstat (limited to 'trap.c')
-rw-r--r-- | trap.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -108,7 +108,7 @@ usertrapret(void) // interrupts and exceptions from kernel code go here, // on whatever the current kernel stack is. // must be 4-byte aligned to fit in stvec. -void __attribute__ ((aligned (4))) +void kerneltrap() { uint64 sstatus = r_sstatus(); |