[android-kernel] Eclair Cache Problem

2010-05-07 Thread Anthony
After switching my phone from Donut to Eclair, I've been experiencing a lot of performance issues. The phone will work well for a while but after 15 or 20 minutes of clicking through the UI, it will become almost completely unresponsive and mostly stay that way. The CPU usage is pretty low, and the

Re: [android-kernel] Re: creating new processes insternals

2010-05-07 Thread Dianne Hackborn
2-3 threads are usually created for the binder IPC thread pool. On Fri, May 7, 2010 at 4:11 AM, Hristo Bojinov wrote: > The Calculator is a Dalvik /"Java"/ app. All those get forked off of > zygote for performance reasons (zygote is an empty VM instance, ready > to spawn/fork off real apps; it ha

[android-kernel] Enable extra memory on mahimahi

2010-05-07 Thread coolbho3k
After examining the HTC Incredible kernel source (recently posted by HTC), I found that it was possible to change the Nexus One's memory map to match some of the changes made by HTC. This allowed me to increase the amount of RAM available on the Nexus One by 21MB without any consequences. I increa

[android-kernel] Re: creating new processes insternals

2010-05-07 Thread Hristo Bojinov
The Calculator is a Dalvik /"Java"/ app. All those get forked off of zygote for performance reasons (zygote is an empty VM instance, ready to spawn/fork off real apps; it has many libraries preloaded in its address space, etc.). http://developer.android.com/reference/dalvik/system/Zygote.html Not