================
@@ -250,10 +268,12 @@ class ProcessInstanceInfo : public ProcessInfo {
lldb::pid_t m_parent_pid = LLDB_INVALID_PROCESS_ID;
lldb::pid_t m_process_group_id = LLDB_INVALID_PROCESS_ID;
lldb::pid_t m_process_session_id = LLDB_INVALID_PROCESS_ID;
- struct timespec m_user_time {};
- struct timespec m_system_time {};
- struct timespec m_cumulative_user_time {};
- struct timespec m_cumulative_system_time {};
+ std::optional<struct timespec> m_user_time = std::nullopt;
+ std::optional<struct timespec> m_system_time = std::nullopt;
+ std::optional<struct timespec> m_cumulative_user_time = std::nullopt;
+ std::optional<struct timespec> m_cumulative_system_time = std::nullopt;
+ std::optional<int8_t> m_priority_value = std::nullopt;
+ std::optional<bool> m_zombie = std::nullopt;
----------------
feg208 wrote:
done
https://github.com/llvm/llvm-project/pull/91544
_______________________________________________
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits