[rpcsx-os] implement shm

This commit is contained in:
DH 2023-07-29 22:46:28 +03:00
parent d52a53cfcd
commit 645e41eed8
28 changed files with 187 additions and 47 deletions

View file

@ -846,7 +846,7 @@ Ref<orbis::Module> rx::linker::loadModuleFile(std::string_view path,
}
orbis::Ref<orbis::File> instance;
if (vfs::open(path, kOpenFlagReadOnly, 0, &instance).isError()) {
if (vfs::open(path, kOpenFlagReadOnly, 0, &instance, thread).isError()) {
return {};
}