diff options
author | Andrew Waterman <andrew@sifive.com> | 2020-07-14 13:04:37 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-14 13:04:37 -0700 |
commit | 4d4a4352f4dbd8149af956e30579d9e14860a5a7 (patch) | |
tree | 9a377c58ee6e6093e9d40ffe5dfa5b2dd4b69b55 | |
parent | 2f75dc2940f1f780b1f2d12f41daec9c92fc445a (diff) | |
parent | 9041acee7f54e90bbc8993a49eab58e014c45356 (diff) | |
download | env-4d4a4352f4dbd8149af956e30579d9e14860a5a7.zip env-4d4a4352f4dbd8149af956e30579d9e14860a5a7.tar.gz env-4d4a4352f4dbd8149af956e30579d9e14860a5a7.tar.bz2 |
Merge pull request #24 from wuzhy/master
fix a building error
-rw-r--r-- | v/vm.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -17,8 +17,8 @@ void trap_entry(); void pop_tf(trapframe_t*); -volatile uint64_t tohost; -volatile uint64_t fromhost; +extern volatile uint64_t tohost; +extern volatile uint64_t fromhost; static void do_tohost(uint64_t tohost_value) { |