From afbeb31bffd54ecd332da5d3751b42da02b62330 Mon Sep 17 00:00:00 2001 From: Dianne Hackborn Date: Tue, 8 Dec 2009 19:45:59 -0800 Subject: Maybe really fix windows build. --- libs/utils/Threads.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'libs/utils/Threads.cpp') diff --git a/libs/utils/Threads.cpp b/libs/utils/Threads.cpp index 00f9943bfe83..2b1f49044d34 100644 --- a/libs/utils/Threads.cpp +++ b/libs/utils/Threads.cpp @@ -286,10 +286,12 @@ int androidSetThreadSchedulingGroup(pid_t tid, int grp) return BAD_VALUE; } +#if defined(HAVE_PTHREADS) if (set_sched_policy(tid, (grp == ANDROID_TGROUP_BG_NONINTERACT) ? SP_BACKGROUND : SP_FOREGROUND)) { return PERMISSION_DENIED; } +#endif return NO_ERROR; } @@ -297,6 +299,8 @@ int androidSetThreadSchedulingGroup(pid_t tid, int grp) int androidSetThreadPriority(pid_t tid, int pri) { int rc = 0; + +#if defined(HAVE_PTHREADS) int lasterr = 0; if (pri >= ANDROID_PRIORITY_BACKGROUND) { @@ -309,7 +313,6 @@ int androidSetThreadPriority(pid_t tid, int pri) lasterr = errno; } -#if defined(HAVE_PTHREADS) if (setpriority(PRIO_PROCESS, tid, pri) < 0) { rc = INVALID_OPERATION; } else { -- cgit v1.2.3-59-g8ed1b