summaryrefslogtreecommitdiffstats
path: root/include/utils
diff options
context:
space:
mode:
authorGlenn Kasten <gkasten@google.com>2011-08-29 14:38:52 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2011-08-29 14:38:52 -0700
commitb4bf90b40e30096479a4d4cc9cf135e991ef1994 (patch)
treec00cccd8405fc51990f0f7cf2f92ace2b394e0ea /include/utils
parentbce1667e7ae69ff575e73e776040524fb5515c5f (diff)
parent33eafef1a9ef508f7b1ae1edf4caf29b81a80255 (diff)
downloadframeworks_base-b4bf90b40e30096479a4d4cc9cf135e991ef1994.zip
frameworks_base-b4bf90b40e30096479a4d4cc9cf135e991ef1994.tar.gz
frameworks_base-b4bf90b40e30096479a4d4cc9cf135e991ef1994.tar.bz2
Merge "Add C++ thread API androidGetThreadSchedulingGroup"
Diffstat (limited to 'include/utils')
-rw-r--r--include/utils/threads.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/utils/threads.h b/include/utils/threads.h
index c84a9b4..c685625 100644
--- a/include/utils/threads.h
+++ b/include/utils/threads.h
@@ -143,6 +143,13 @@ extern int androidSetThreadSchedulingGroup(pid_t tid, int grp);
// in either case errno is set. Thread ID zero means current thread.
extern int androidSetThreadPriority(pid_t tid, int prio);
+// Get the current scheduling group of a particular thread. Normally returns
+// one of the ANDROID_TGROUP constants other than ANDROID_TGROUP_DEFAULT.
+// Returns ANDROID_TGROUP_DEFAULT if no pthread support (e.g. on host) or if
+// scheduling groups are disabled. Returns INVALID_OPERATION if unexpected error.
+// Thread ID zero means current thread.
+extern int androidGetThreadSchedulingGroup(pid_t tid);
+
#ifdef __cplusplus
}
#endif