[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 15:14:44 PDT 2024
================
@@ -237,6 +250,16 @@ class ProcessInstanceInfo : public ProcessInfo {
m_cumulative_system_time.tv_usec > 0;
}
+ int8_t GetNiceValue() const { return m_nice_value; }
----------------
feg208 wrote:
prpsinfo has pr_nice field to be populated https://github.com/llvm/llvm-project/blob/main/lldb/source/Plugins/Process/elf-core/ThreadElfCore.h#L99
https://github.com/llvm/llvm-project/pull/91544
More information about the lldb-commits
mailing list