Report unfinished code in sceKernelAllocateTls().
This commit is contained in:
parent
084ad5aa53
commit
ac7bfcb6ef
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue