Changeset View
Changeset View
Standalone View
Standalone View
include/lldb/Target/Process.h
Context not available. | |||||
std::map<uint64_t, uint32_t> m_thread_id_to_index_id_map; | std::map<uint64_t, uint32_t> m_thread_id_to_index_id_map; | ||||
int m_exit_status; ///< The exit status of the process, or -1 if not set. | int m_exit_status; ///< The exit status of the process, or -1 if not set. | ||||
std::string m_exit_string; ///< A textual description of why a process exited. | std::string m_exit_string; ///< A textual description of why a process exited. | ||||
Mutex m_exit_status_mutex; ///< Mutex so m_exit_status m_exit_string can be safely accessed from multiple threads | |||||
Mutex m_thread_mutex; | Mutex m_thread_mutex; | ||||
ThreadList m_thread_list_real; ///< The threads for this process as are known to the protocol we are debugging with | ThreadList m_thread_list_real; ///< The threads for this process as are known to the protocol we are debugging with | ||||
ThreadList m_thread_list; ///< The threads for this process as the user will see them. This is usually the same as | ThreadList m_thread_list; ///< The threads for this process as the user will see them. This is usually the same as | ||||
Context not available. |