On Dec 15, 4:03 pm, Doug <[email protected]> wrote: > Does anyone know in Android/Linux if new threads inherit the priority > of the creating thread? I'm setting the priority of a thread using > android.os.Process.setThreadPriority, which calls permanently into > native code, and that native code is going to create more threads, so > I'd like to know what priority those natively-created thread are going > to run with.
You can use "adb shell ps -p -t" to display all threads in all processes, with their priorities. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

