Jack
2007-08-23 09:02:32 UTC
Hello,
I've got a slightly complicated question.
Is that if I want a breakpoint to suspend execution only when certain
function calls it.
For example
void new()
{
go(); <<<<< breakpoint here
}
void a()
{
new();
}
void b()
{
new();
}
If I want "a" to suspend the execution, but not with "b", what can I do to
achieve this?
Thanks
Jack
I've got a slightly complicated question.
Is that if I want a breakpoint to suspend execution only when certain
function calls it.
For example
void new()
{
go(); <<<<< breakpoint here
}
void a()
{
new();
}
void b()
{
new();
}
If I want "a" to suspend the execution, but not with "b", what can I do to
achieve this?
Thanks
Jack