>>>> "BW" == Ben Wing <ben(a)666.com>:
BW> what you did is correct. are you compiling with debug symbols? also
BW> maybe you need to stop and continue a few times in order to get a good
BW> backtrace.
yes - I always build two versions with gcc - one "fast":
--debug=no \
--error-checking=none \
--cflags="-g -O2"
the other "safe":
--debug=yes \
--error-checking=all \
--cflags="-g"
in this case I was running the -O2 version, but it should have had some
debug info - but it just seemed totally lost
have been running the full debug under gdb, but haven't seen the problem
yet...
-JT