Merge "Fix default compute thread priority"

automerge: 231df77

* commit '231df77eff4e31fead0dfadee6ea6ead980b24ea':
  Fix default compute thread priority
This commit is contained in:
Jason Sams
2015-01-22 21:12:38 +00:00
committed by android-build-merger

View File

@@ -1047,8 +1047,10 @@ public class RenderScript {
* their priority to LOW to avoid starving forground processes.
*/
public enum Priority {
LOW (Process.THREAD_PRIORITY_BACKGROUND + (5 * Process.THREAD_PRIORITY_LESS_FAVORABLE)),
NORMAL (Process.THREAD_PRIORITY_DISPLAY);
// These values used to represent official thread priority values
// now they are simply enums to be used by the runtime side
LOW (15),
NORMAL (-8);
int mID;
Priority(int id) {