DevelOpProf
view release on metacpan or search on metacpan
return 0;
}
MODULE = Devel::OpProf PACKAGE = Devel::OpProf
PROTOTYPES: ENABLE
void
profile(flag)
int flag
PPCODE:
profiling = flag;
void
op_count()
PPCODE:
int i;
EXTEND(sp, PL_maxo);
for (i = 0; i < PL_maxo; i++)
PUSHs(sv_2mortal(newSViv(op_count[i])));
void
zero_stats()
PPCODE:
Zero(op_count, PL_maxo, unsigned long);
BOOT:
Newz(0, op_count, PL_maxo, unsigned long);
PL_runops = runops_opprof;
( run in 1.137 second using v1.01-cache-2.11-cpan-71847e10f99 )