I have a multisegment app and when I try to put a break point a got a faded red dot vs the bright red dot and the debugger never stopped at the break point.
why can't I set the break point?
Because the compiler isn't generating code that corresponds with that line of code in your program.
This could be due to inlining -- if its enabled and your function is inlined, you can't set a breakpoint there. It also may be due to optimizations, and it also could be due to the function not being called and the linker removing it from the program (dead stripping).
Finally, it might just be due to you not having debug information turned on for the file. Make sure the column with the bug at the top in the CW project window has a dot in it for your source file.
--
Ben Combee <[EMAIL PROTECTED]>
CodeWarrior for Palm OS technical lead
Palm OS programming help @ www.palmoswerks.com
-- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/
