Sun Studio 12: Debugging a Program With dbx

stop in function Command

Use the stop in command to set a breakpoint at a member function of a template class or at a template function.

For a member of a class template instantiation:


(dbx) stop in Array<int>::Array(int l)
(2) stop in Array<int>::Array(int)

For a function instantiation:


(dbx) stop in square(double, double*)
(6) stop in square(double, double*)

For more information, stop Command and in function.