Wrappers so existing code keeps reading nicely.
| 35 | |
| 36 | // Wrappers so existing code keeps reading nicely. |
| 37 | inline bool kread(const Engine& eng, VAddr va, void* dst, std::size_t n) { |
| 38 | return kva_read(eng, va, dst, n); |
| 39 | } |
| 40 | template <typename T> |
| 41 | inline bool kread_pod(const Engine& eng, VAddr va, T& out) { |
| 42 | return kva_read_pod(eng, va, out); |
nothing calls this directly
no test coverage detected