Philipp Oppermann

Results 676 comments of Philipp Oppermann

What's the status of this? Can we still reproduce the "failed to map shared memory input" error with the latest version?

See #1070. I agree that this would be a useful feature! There is already a prototype implementation in https://github.com/phil-opp/blog_os/pull/1232, maybe this works for you? > like [`mdbook`](https://github.com/rust-lang/mdbook) does. Could you...

Could you try checking out and running the [`post-03` branch](https://github.com/phil-opp/blog_os/tree/post-03) of this repo? If that works, there is probably some typo in your code.

That's weird. We have a CI job that tests the code regularly and it worked with the same QEMU version on macOS this night. Could you please try running `post-06`...

Thanks for submitting this! I will probably not merge this directly, but I will definitely consider it when I write the rest of this post.

Thanks a lot for creating this translation! @wusyong If you have time, maybe you could take a quick look at this translation?

Ok, let's just merge this without a review. Thanks again for creating this translation @ssrlive and sorry for the long delay!

> 4\. map the page again This would require an `unsafe` operation in our current API.

Page faults are often handled transparently by the operating system, e.g. when swapping out pages to disk. When the CPU tries to access the referenced value, the OS can handle...