Add more information for "Not support this patcher"

This commit is contained in:
sum2012 2013-12-17 05:36:55 +08:00
parent 0cd1c3ad92
commit 9b7e5566d1
2 changed files with 6 additions and 6 deletions

View file

@ -670,19 +670,19 @@ int sceKernelReferGlobalProfiler(u32 statusPtr) {
int ThreadManForKernel_446d8de6(const char *threadName, u32 entry, u32 prio, int stacksize, u32 attr, u32 optionAddr)
{
WARN_LOG(SCEKERNEL,"Not support this patcher");
WARN_LOG(SCEKERNEL,"ThreadManForKernel_446d8de6:Not support this patcher");
return sceKernelCreateThread(threadName, entry, prio, stacksize, attr, optionAddr);
}
int ThreadManForKernel_f475845d(SceUID threadToStartID, int argSize, u32 argBlockPtr)
{
WARN_LOG(SCEKERNEL,"Not support this patcher");
WARN_LOG(SCEKERNEL,"ThreadManForKernel_f475845d:Not support this patcher");
return sceKernelStartThread(threadToStartID,argSize,argBlockPtr);
}
int ThreadManForKernel_ceadeb47(u32 usec)
{
WARN_LOG(SCEKERNEL,"Not support this patcher");
WARN_LOG(SCEKERNEL,"ThreadManForKernel_ceadeb47:Not support this patcher");
return sceKernelDelayThread(usec);
}

View file

@ -1854,20 +1854,20 @@ u32 sceKernelGetModuleIdList(u32 resultBuffer, u32 resultBufferSize, u32 idCount
u32 ModuleMgrForKernel_977de386(const char *name, u32 flags, u32 optionAddr)
{
WARN_LOG(SCEMODULE,"Not support this patcher");
WARN_LOG(SCEMODULE,"ModuleMgrForKernel_977de386:Not support this patcher");
return sceKernelLoadModule(name, flags, optionAddr);
}
void ModuleMgrForKernel_50f0c1ec(u32 moduleId, u32 argsize, u32 argAddr, u32 returnValueAddr, u32 optionAddr)
{
WARN_LOG(SCEMODULE,"Not support this patcher");
WARN_LOG(SCEMODULE,"ModuleMgrForKernel_50f0c1ec:Not support this patcher");
sceKernelStartModule(moduleId, argsize, argAddr, returnValueAddr, optionAddr);
}
//fix for tiger x dragon
u32 ModuleMgrForKernel_a1a78c58(const char *name, u32 flags, u32 optionAddr)
{
WARN_LOG(SCEMODULE,"Not support this patcher");
WARN_LOG(SCEMODULE,"ModuleMgrForKernel_a1a78c58:Not support this patcher");
return sceKernelLoadModule(name, flags, optionAddr);
}