1
0
forked from 0ad/0ad

Fix build errors

This was SVN commit r9453.
This commit is contained in:
Ykkrosh 2011-05-05 20:24:22 +00:00
parent a8c087d46b
commit 1da3cdb498
3 changed files with 4 additions and 4 deletions

View File

@ -100,7 +100,7 @@ size_t os_cpu_MemoryAvailable()
}
uintptr_t os_cpu_SetThreadAffinityMask(uintptr_t processorMask)
uintptr_t os_cpu_SetThreadAffinityMask(uintptr_t UNUSED(processorMask))
{
// not yet implemented. when doing so, see http://developer.apple.com/releasenotes/Performance/RN-AffinityAPI/

View File

@ -35,12 +35,12 @@ void* debug_GetCaller(void* UNUSED(context), const wchar_t* UNUSED(lastFuncToSki
Status debug_DumpStack(wchar_t* UNUSED(buf), size_t UNUSED(max_chars), void* UNUSED(context), const wchar_t* UNUSED(lastFuncToSkip))
{
return ERR::NOT_IMPLEMENTED;
return ERR::NOT_SUPPORTED;
}
Status debug_ResolveSymbol(void* UNUSED(ptr_of_interest), wchar_t* UNUSED(sym_name), wchar_t* UNUSED(file), int* UNUSED(line))
{
return ERR::NOT_IMPLEMENTED;
return ERR::NOT_SUPPORTED;
}
void debug_SetThreadName(char const* UNUSED(name))

View File

@ -73,7 +73,7 @@ Status sys_clipboard_free(wchar_t* copy)
Status gfx_get_video_mode(int* xres, int* yres, int* bpp, int* freq)
{
// TODO Implement
return ERR::NOT_IMPLEMENTED;
return ERR::NOT_SUPPORTED;
}