lmkd: Fix the text of the warning when pthread_setschedparam fails
Fix the text of the warning when pthread_setschedparam fails to set SCHED_OTHER scheduling policy for a reaper thread. Bug: 237180716 Signed-off-by: Suren Baghdasaryan <surenb@google.com> Change-Id: I1b04713d145f4f3c243f16f932c753f5b06d48e6
This commit is contained in:
parent
ab4c6d86e0
commit
a0b25851c7
|
|
@ -133,7 +133,7 @@ bool Reaper::init(int comm_fd) {
|
|||
}
|
||||
// set normal scheduling policy for the reaper thread
|
||||
if (pthread_setschedparam(thread_pool_[thread_cnt_], SCHED_OTHER, ¶m)) {
|
||||
ALOGW("set SCHED_FIFO failed %s", strerror(errno));
|
||||
ALOGW("set SCHED_OTHER failed %s", strerror(errno));
|
||||
}
|
||||
snprintf(name, sizeof(name), "lmkd_reaper%d", thread_cnt_);
|
||||
if (pthread_setname_np(thread_pool_[thread_cnt_], name)) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue