This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

BreakSet on Function call

Hello Friends,

i have question about the BreakSet command. 
Is there a way to set a Breakpoint on the line number where a function is called WITHOUT using the line number ? 


for example:

void main()
{
// do something
	TestFunction();
	
// do something 
	TestFunction();
	
}

void TestFunction()
{
// do something
}

I want to set a Breakpoint on the second call of TestFunction (line 7). 


Thanks for your help :) 
Hannes