Report unfinished code in sceKernelAllocateTls().

This commit is contained in:
Unknown W. Brackets 2013-05-25 20:43:47 -07:00
parent 084ad5aa53
commit ac7bfcb6ef

View file

@ -1458,7 +1458,7 @@ int sceKernelDeleteTls(SceUID uid)
int sceKernelAllocateTls(SceUID uid)
{
// TODO: Allocate downward if PSP_TLS_ATTR_HIGHMEM?
WARN_LOG(HLE, "UNIMPL sceKernelAllocateTls(%08x)", uid);
DEBUG_LOG(HLE, "sceKernelAllocateTls(%08x)", uid);
u32 error;
TLS *tls = kernelObjects.Get<TLS>(uid, error);
if (tls)
@ -1493,7 +1493,7 @@ int sceKernelAllocateTls(SceUID uid)
if (allocBlock == -1)
{
// TODO: Wait here, wake when one is free.
ERROR_LOG(HLE, "sceKernelAllocateTls: should wait");
ERROR_LOG_REPORT(HLE, "sceKernelAllocateTls: should wait");
return -1;
}