You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
hi.... could be a way to print something like a stack backtrace? ... i mean, a backward chain of function calls in a given point,,,, imagine something like
that will look like a collection of TRACE()'s... that would be very useful to follow the program flow and tracking back possible errors or understand the program better.... but i don't imagine how this could be achieved, i am not skilled in c/c++
i got the idea from java, where you can specifically print a backtrace anytime at will, and that backtrace contains all function calls from current point, passing by all involved functions, back to main() ... https://en.wikipedia.org/wiki/Stack_trace
The text was updated successfully, but these errors were encountered:
hi.... could be a way to print something like a stack backtrace? ... i mean, a backward chain of function calls in a given point,,,, imagine something like
... that prints something like...
that will look like a collection of
TRACE()
's... that would be very useful to follow the program flow and tracking back possible errors or understand the program better.... but i don't imagine how this could be achieved, i am not skilled in c/c++i got the idea from java, where you can specifically print a backtrace anytime at will, and that backtrace contains all function calls from current point, passing by all involved functions, back to
main()
... https://en.wikipedia.org/wiki/Stack_traceThe text was updated successfully, but these errors were encountered: