vfs: do not crash on procfs access

This commit is contained in:
DH 2024-11-13 22:01:04 +03:00
parent 3ca33e19e2
commit 5aaabba761

View file

@ -55,7 +55,6 @@ struct ProcFs : IoDevice {
std::uint32_t flags, std::uint32_t mode,
orbis::Thread *thread) override {
std::fprintf(stderr, "procfs access: %s\n", path);
std::abort();
return orbis::ErrorCode::NOENT;
}
};