Applying clang-format suggestions in PROCPRIO cmd
Updating the cmd_procprio function with the clang-format suggestions. No logic changes. Test: m Bug: 325525024 Change-Id: Id6c1feb717259406d953e5e2a174398bccf65d23 Signed-off-by: Carlos Galo <carlosgalo@google.com>
This commit is contained in:
parent
7da353fb00
commit
8b5a67d35a
10
lmkd.cpp
10
lmkd.cpp
|
|
@ -1228,8 +1228,7 @@ static void cmd_procprio(LMKD_CTRL_PACKET packet, int field_count, struct ucred*
|
|||
|
||||
lmkd_pack_get_procprio(packet, field_count, ¶ms);
|
||||
|
||||
if (params.oomadj < OOM_SCORE_ADJ_MIN ||
|
||||
params.oomadj > OOM_SCORE_ADJ_MAX) {
|
||||
if (params.oomadj < OOM_SCORE_ADJ_MIN || params.oomadj > OOM_SCORE_ADJ_MAX) {
|
||||
ALOGE("Invalid PROCPRIO oomadj argument %d", params.oomadj);
|
||||
return;
|
||||
}
|
||||
|
|
@ -1243,7 +1242,8 @@ static void cmd_procprio(LMKD_CTRL_PACKET packet, int field_count, struct ucred*
|
|||
if (read_proc_status(params.pid, buf, sizeof(buf))) {
|
||||
if (parse_status_tag(buf, PROC_STATUS_TGID_FIELD, &tgid) && tgid != params.pid) {
|
||||
ALOGE("Attempt to register a task that is not a thread group leader "
|
||||
"(tid %d, tgid %" PRId64 ")", params.pid, tgid);
|
||||
"(tid %d, tgid %" PRId64 ")",
|
||||
params.pid, tgid);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
|
@ -1254,8 +1254,8 @@ static void cmd_procprio(LMKD_CTRL_PACKET packet, int field_count, struct ucred*
|
|||
snprintf(path, sizeof(path), "/proc/%d/oom_score_adj", params.pid);
|
||||
snprintf(val, sizeof(val), "%d", params.oomadj);
|
||||
if (!writefilestring(path, val, false)) {
|
||||
ALOGW("Failed to open %s; errno=%d: process %d might have been killed",
|
||||
path, errno, params.pid);
|
||||
ALOGW("Failed to open %s; errno=%d: process %d might have been killed", path, errno,
|
||||
params.pid);
|
||||
/* If this file does not exist the process is dead. */
|
||||
return;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue