Hi there,
Is there any way of extracting the call sequence info of an application with VTune or even PTU?
I mean if I code something like this:
main(){
f1();
f2();
}
versus
main(){
f2();
f1();
}
how can I get a call graph or something that can tell the difference. Is this even possible with VTune or PTU?
Thanks,
Emad