Make ppu main_thread unjoinable

This commit is contained in:
eladash 2019-01-25 12:32:24 +02:00 committed by Ivan
parent 56b7581ade
commit 587fe421ee

View File

@ -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<named_thread<ppu_thread>>("PPU[0x1000000] Thread (main_thread)", p, "main_thread", primary_prio);
auto ppu = idm::make_ptr<named_thread<ppu_thread>>("PPU[0x1000000] Thread (main_thread)", p, "main_thread", primary_prio, 1);
// Write initial data (exitspawn)
if (Emu.data.size())