Author Topic: The Call Stack Debugging Window  (Read 3953 times)

Gamer_2k4

  • Guest
The Call Stack Debugging Window
« on: February 06, 2008, 08:55:18 am »
When debugging and looking at the call stack window, I noticed that all of the functions are listed as ??().  Assuming that this isn't correct behavior, how do I get more meaningful output? (main(), etc. instead of ??() )

Offline mandrav

  • Project Leader
  • Administrator
  • Lives here!
  • *****
  • Posts: 4315
    • Code::Blocks IDE
Re: The Call Stack Debugging Window
« Reply #1 on: February 06, 2008, 09:54:53 am »
This can happen in two cases:

  • Your program has stopped/crashed inside a library/kernel call and you don't have the debugging symbols for it
  • Your program has a bug that messed up the stack, which makes it invalid/unreliable

Be patient!
This bug will be fixed soon...