On Jun 16, 1:15 pm, MartinB <[email protected]> wrote: > What kind of debugging mechanisms are available in this case? I've had > a quick look at 'traceview' but the problem is that I have to call > Debug.stopMethodTracing() to write profiling data from the recording > buffer to file, and I am of course unable to make that call after the > endless loop.
You can attach a Java debugger and look at the stack trace. Or go to the Threads tab in DDMS and double-click the thread that's using up all the CPU (rapidly increasing "utime" value) to see the stack. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

