From 587fe421eef80112471320a85c8f6e701c48649b Mon Sep 17 00:00:00 2001 From: eladash Date: Fri, 25 Jan 2019 12:32:24 +0200 Subject: [PATCH] Make ppu main_thread unjoinable --- rpcs3/Emu/Cell/PPUModule.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/Cell/PPUModule.cpp b/rpcs3/Emu/Cell/PPUModule.cpp index 09b010c307..9aaba6594f 100644 --- a/rpcs3/Emu/Cell/PPUModule.cpp +++ b/rpcs3/Emu/Cell/PPUModule.cpp @@ -1494,7 +1494,7 @@ void ppu_load_exec(const ppu_exec_object& elf) p.stack_addr = vm::cast(vm::alloc(primary_stacksize, vm::stack, 4096)); p.stack_size = primary_stacksize; - auto ppu = idm::make_ptr>("PPU[0x1000000] Thread (main_thread)", p, "main_thread", primary_prio); + auto ppu = idm::make_ptr>("PPU[0x1000000] Thread (main_thread)", p, "main_thread", primary_prio, 1); // Write initial data (exitspawn) if (Emu.data.size())