I run the following Android Monkey command:
adb shell monkey --hprof -v -p com.my.app 5000
It should create a hprof file under /data/misc, but it doesn't. I chmod'ed 777 /data/misc.
I then tried kill -10 APP_PID, but got the following under logcat:
I/dalvikvm( 771): threadid=4: reacting to signal 10
I/dalvikvm( 771): SIGUSR1 forcing GC (no HPROF)
D/dalvikvm( 771): GC_EXPLICIT freed 46K, 38% free 8352K/13383K, external 15387K/15496K, paused 98ms
I'm running Cyanogenmod version 7, Android version 2.3.7 on Galaxy S.
Why is there "no HPROF", and how do I get a HPROF dump through Monkey and kill -10?
Thanks