mem_ptr_t replaced

This commit is contained in:
Nekotekina 2014-09-02 05:05:13 +04:00
parent bd9775e0eb
commit b952017a3a
73 changed files with 833 additions and 1142 deletions

View file

@ -81,12 +81,12 @@ int cellFiberPpuJoinFiber()
return CELL_OK;
}
u32 cellFiberPpuSelf()
vm::ptr<void> cellFiberPpuSelf()
{
cellFiber->Log("cellFiberPpuSelf() -> nullptr"); // TODO
// returns fiber structure (zero for simple PPU thread)
return 0;
return vm::ptr<void>::make(0);
}
int cellFiberPpuSendSignal()