HackerTrans
TopNewTrendsCommentsPastAskShowJobs

champijone

no profile record

comments

champijone
·il y a 2 ans·discuss
One reason to prefer it in C is to be able to easily add locally scoped functionality like profiling markers and temp allocators.

  profile_begin("func");
  a = temp_arena_begin();
  // ... code
  temp_arena_end();
  profile_end();