Symbol table, atos, nlist
site_archiver@lists.apple.com Delivered-To: darwin-dev@lists.apple.com _______________________________________________ Do not post admin requests to the list. They will be ignored. Darwin-dev mailing list (Darwin-dev@lists.apple.com) Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/darwin-dev/site_archiver%40lists.appl... This email sent to site_archiver@lists.apple.com /** According to gcc documentation: called upon function entry */ void __attribute__((__no_instrument_function__)) __cyg_profile_func_enter(void *this_fn, void *call_site) { callDeep += 2; cygDebugMessage(deepPrefix(@"enter", this_fn, call_site)); } /** According to gcc documentation: called upon function exit */ void __attribute__((__no_instrument_function__)) __cyg_profile_func_exit(void *this_fn, void *call_site) { cygDebugMessage(deepPrefix(@"exit", this_fn, call_site)); callDeep -= 2; }
participants (1)
-
Antonio Ferraioli