[Lldb-commits] [lldb] [lldb] Adds additional fields to ProcessInfo (PR #91544)

Alex Langford via lldb-commits lldb-commits at lists.llvm.org
Wed May 8 15:53:26 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; }
----------------
bulbazord wrote:

Suggestion: `nice` -> `priority_level` or something similar. The unix world uses the words `nice` and `niceness` but Windows and other platforms do not. It's also not a very obvious word if you lack the domain expertise.

https://github.com/llvm/llvm-project/pull/91544


More information about the lldb-commits mailing list