1
0
forked from 0ad/0ad
0ad/source/lib/sysdep/osx/odbg.cpp
olsner ea65a2ad8e Picking up the pieces (part 1)
This was SVN commit r5376.
2007-09-26 05:30:57 +00:00

25 lines
567 B
C++

// note: the BFD stuff *could* be used on other platforms, if we saw the
// need for it.
#include "precompiled.h"
#include "lib/sysdep/sysdep.h"
#include "lib/debug.h"
void* debug_get_nth_caller(uint UNUSED(n), void *UNUSED(context))
{
return NULL;
}
LibError debug_dump_stack(wchar_t* UNUSED(buf), size_t UNUSED(max_chars), uint UNUSED(skip), void* UNUSED(context))
{
return ERR::NOT_IMPLEMENTED;
}
LibError debug_resolve_symbol(void* UNUSED(ptr_of_interest), char* UNUSED(sym_name), char* UNUSED(file), int* UNUSED(line))
{
return ERR::NOT_IMPLEMENTED;
}