Loading libprocessgroup/task_profiles.cpp +4 −10 Original line number Diff line number Diff line Loading @@ -806,7 +806,6 @@ const IProfileAttribute* TaskProfiles::GetAttribute(const std::string& name) con bool TaskProfiles::SetProcessProfiles(uid_t uid, pid_t pid, const std::vector<std::string>& profiles, bool use_fd_cache) { bool success = true; for (const auto& name : profiles) { TaskProfile* profile = GetProfile(name); if (profile != nullptr) { Loading @@ -815,19 +814,16 @@ bool TaskProfiles::SetProcessProfiles(uid_t uid, pid_t pid, } if (!profile->ExecuteForProcess(uid, pid)) { PLOG(WARNING) << "Failed to apply " << name << " process profile"; success = false; } } else { PLOG(WARNING) << "Failed to find " << name << "process profile"; success = false; } } return success; return true; } bool TaskProfiles::SetTaskProfiles(int tid, const std::vector<std::string>& profiles, bool use_fd_cache) { bool success = true; for (const auto& name : profiles) { TaskProfile* profile = GetProfile(name); if (profile != nullptr) { Loading @@ -836,12 +832,10 @@ bool TaskProfiles::SetTaskProfiles(int tid, const std::vector<std::string>& prof } if (!profile->ExecuteForTask(tid)) { PLOG(WARNING) << "Failed to apply " << name << " task profile"; success = false; } } else { PLOG(WARNING) << "Failed to find " << name << "task profile"; success = false; } } return success; return true; } Loading
libprocessgroup/task_profiles.cpp +4 −10 Original line number Diff line number Diff line Loading @@ -806,7 +806,6 @@ const IProfileAttribute* TaskProfiles::GetAttribute(const std::string& name) con bool TaskProfiles::SetProcessProfiles(uid_t uid, pid_t pid, const std::vector<std::string>& profiles, bool use_fd_cache) { bool success = true; for (const auto& name : profiles) { TaskProfile* profile = GetProfile(name); if (profile != nullptr) { Loading @@ -815,19 +814,16 @@ bool TaskProfiles::SetProcessProfiles(uid_t uid, pid_t pid, } if (!profile->ExecuteForProcess(uid, pid)) { PLOG(WARNING) << "Failed to apply " << name << " process profile"; success = false; } } else { PLOG(WARNING) << "Failed to find " << name << "process profile"; success = false; } } return success; return true; } bool TaskProfiles::SetTaskProfiles(int tid, const std::vector<std::string>& profiles, bool use_fd_cache) { bool success = true; for (const auto& name : profiles) { TaskProfile* profile = GetProfile(name); if (profile != nullptr) { Loading @@ -836,12 +832,10 @@ bool TaskProfiles::SetTaskProfiles(int tid, const std::vector<std::string>& prof } if (!profile->ExecuteForTask(tid)) { PLOG(WARNING) << "Failed to apply " << name << " task profile"; success = false; } } else { PLOG(WARNING) << "Failed to find " << name << "task profile"; success = false; } } return success; return true; }