MCPcopy Create free account
hub / github.com/AppleWin/AppleWin / ProfileLinePeek

Function ProfileLinePeek

source/Debugger/Debug.cpp:8579–8587  ·  view source on GitHub ↗

Return address of next line to write to. ===========================================================================

Source from the content-addressed store, hash-verified

8577// Return address of next line to write to.
8578//===========================================================================
8579ProfileLine_t ProfileLinePeek ( int iLine )
8580{
8581 if (iLine < 0)
8582 iLine = 0;
8583
8584 return ( g_nProfileLine == 0 || iLine <= g_nProfileLine )
8585 ? ProfileLine_t( g_aProfileLine[ iLine ], sizeof(g_aProfileLine[iLine]) )
8586 : ProfileLine_t();
8587}
8588
8589//===========================================================================
8590ProfileLine_t ProfileLinePush ()

Callers 4

CmdProfileFunction · 0.85
ProfileLinePushFunction · 0.85
ProfileFormatFunction · 0.85
ProfileSaveFunction · 0.85

Calls 1

ProfileLine_tClass · 0.85

Tested by

no test coverage detected