[Lldb-commits] [lldb] [lldb] Adds additional fields to ProcessInfo (PR #91544)
Fred Grim via lldb-commits
lldb-commits at lists.llvm.org
Thu May 9 09:27:38 PDT 2024
================
@@ -117,6 +118,10 @@ bool ProcessInfo::IsScriptedProcess() const {
return m_scripted_metadata_sp && *m_scripted_metadata_sp;
}
+bool ProcessInstanceInfo::NiceValueIsValid() const {
+ return m_nice_value >= PRIO_MIN && m_nice_value <= PRIO_MAX;
----------------
feg208 wrote:
I removed this and just made the check to be a value stored in the optional
https://github.com/llvm/llvm-project/pull/91544
More information about the lldb-commits
mailing list