mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
remove shm from devices list
thanks to red_prig for investigation
This commit is contained in:
parent
1d840adfdf
commit
2a6daa5538
|
|
@ -145,11 +145,11 @@ handle_signal(int sig, siginfo_t *info, void *ucontext) {
|
|||
allowMonoDebug = true;
|
||||
if (sig != SIGINT) {
|
||||
char buf[128] = "";
|
||||
int len = snprintf(buf, sizeof(buf), " [%s] %u: Signal address=%p\n",
|
||||
int len = snprintf(buf, sizeof(buf), " [%s] %u: Signal %u, address=%p\n",
|
||||
orbis::g_currentThread ? "guest" : "host",
|
||||
orbis::g_currentThread ? orbis::g_currentThread->tid
|
||||
: ::gettid(),
|
||||
info->si_addr);
|
||||
sig, info->si_addr);
|
||||
write(2, buf, len);
|
||||
|
||||
if (std::size_t printed =
|
||||
|
|
@ -442,7 +442,6 @@ static void ps4InitDev() {
|
|||
});
|
||||
|
||||
auto shm = createShmDevice();
|
||||
vfs::addDevice("shm", shm);
|
||||
orbis::g_context.shmDevice = shm;
|
||||
orbis::g_context.blockpoolDevice = createBlockPoolDevice();
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue