top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How to debug CPU starvation on Android?

+2 votes
199 views

Recently, I'm studying about finalize() function of Android. As I know, finalize() maybe cause memory leak or CPU starvation.

Could anyone tell me how to debug CPU starvation?

I think we can see CPU usage when CPU starvation, and we can found out how to see the owner class of finalize().

posted May 1, 2015 by Majula Joshi

Looking for an answer?  Promote on:
Facebook Share Button Twitter Share Button LinkedIn Share Button

Similar Questions
0 votes

I am new to Android community and currently doing research in Android keystore.To understand android keystore properly, i need to debug and understand the process and the data flow.I am not able to find any particular way to debug and see the execution step by step.I used Android studio but i am not able to debug into the IKeystoreService.java and other system classes.Is there a way to debug and see how it works?

Thanking you in advance.

+1 vote

Hi, Being a learner. I am here to participate just like other android developer forum to enhance my knowledge regarding Android Programming & I would like to know that "how to debug my database and shared preferences in an android application", which has become difficult to debug. I hope any tech developer help me in resolving this issue.

+1 vote

How can we debug the Android framework Java code? i know how I can debug the c/c++ code with the help of GDB server etc, but I searched a lot on Google but did not get the solution, currently i am totally relying on Logs but I really need something to Debug the java code inside framework and etc?
please give me some pointers or some details about debugging AOSP framework java code?

+1 vote

We have an app that sync's its contacts with the native contacts app under a new account/content provider created by our app.

There are a few cases where we are unable to edit or update our app's contacts and receive errors like "Not editable from this app" (4.22) or "unable to edit from this app" (4.1.2)

I've cloned the git source for 4.22 contacts api and have added to my android project from Team - Share Project though i still don't understand how I can step through the native contacts code. I have found 2 places in the code where the above error is called, and I'm wanting to know which case we are hitting to better understand how to resolve the issue

...