am 52e19d59: Merge "Change the keep alive time for excess idle threads." into gingerbread

Merge commit '52e19d5917b8f057131c1dc8b3eb772febd791d9' into gingerbread-plus-aosp

* commit '52e19d5917b8f057131c1dc8b3eb772febd791d9':
  Change the keep alive time for excess idle threads.
This commit is contained in:
Romain Guy
2010-09-14 11:36:55 -07:00
committed by Android Git Automerger

View File

@@ -129,7 +129,7 @@ public abstract class AsyncTask<Params, Progress, Result> {
private static final int CORE_POOL_SIZE = 5;
private static final int MAXIMUM_POOL_SIZE = 128;
private static final int KEEP_ALIVE = 10;
private static final int KEEP_ALIVE = 1;
private static final BlockingQueue<Runnable> sWorkQueue =
new LinkedBlockingQueue<Runnable>(10);