On Sep 11, 1:58 pm, Walles <[email protected]> wrote: > I read this blog about how to use DDMS to track memory > allocations.http://android-developers.blogspot.com/2009/02/track-memory-allocatio... [...] > How can I raise the limit from 8 to something higher?
The allocation tracker parameters are currently hard-coded into the VM, in dalvik/vm/AllocTracker.c: #define kMaxAllocRecordStackDepth 8 /* max 255 */ #define kNumAllocRecords 512 /* MUST be power of 2 */ As an alternative, you may just want to set a breakpoint in one of the methods that appears in the stack trace and see if you can catch it. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

