Example #1
0
/**
 * CPU wrapper for Profile_Command().
 */
static int DebugCpu_Profile(int nArgc, char *psArgs[])
{
	return Profile_Command(nArgc, psArgs, false);
}
Example #2
0
/**
 * DSP wrapper for Profile_Command().
 */
static int DebugDsp_Profile(int nArgc, char *psArgs[])
{
	Profile_Command(nArgc, psArgs, true);
	return DEBUGGER_CMDDONE;
}
Example #3
0
/**
 * CPU wrapper for Profile_Command().
 */
static int DebugCpu_Profile(int nArgc, char *psArgs[])
{
    Profile_Command(nArgc, psArgs, false);
    return DEBUGGER_CMDDONE;
}