MCPcopy Create free account
hub / github.com/BlitterStudio/amiberry / debugmem_enable_stackframe

Function debugmem_enable_stackframe

src/debugmem.cpp:3964–3977  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3962}
3963
3964bool debugmem_enable_stackframe(bool enable)
3965{
3966 if (enable && !stackframemode) {
3967 stackframemode = 1;
3968 console_out(_T("Full stack frame tracking enabled.\n"));
3969 allocate_stackframebuffers();
3970 return true;
3971 } else if (!enable && stackframemode) {
3972 stackframemode = 0;
3973 console_out(_T("Full stack frame tracking disabled.\n"));
3974 return true;
3975 }
3976 return false;
3977}
3978
3979bool debugmem_list_stackframe(bool super)
3980{

Callers 1

debug_lineFunction · 0.85

Calls 2

console_outFunction · 0.50

Tested by

no test coverage detected