Changeset View
Changeset View
Standalone View
Standalone View
lldb/source/Plugins/Process/Windows/Common/ProcessDebugger.cpp
Show First 20 Lines • Show All 524 Lines • ▼ Show 20 Lines | void ProcessDebugger::OnLoadDll(const ModuleSpec &module_spec, | ||||
lldb::addr_t module_addr) { | lldb::addr_t module_addr) { | ||||
// Do nothing by default | // Do nothing by default | ||||
} | } | ||||
void ProcessDebugger::OnUnloadDll(lldb::addr_t module_addr) { | void ProcessDebugger::OnUnloadDll(lldb::addr_t module_addr) { | ||||
// Do nothing by default | // Do nothing by default | ||||
} | } | ||||
void ProcessDebugger::OnDebugString(const std::string &string) {} | void ProcessDebugger::OnDebugString(lldb::addr_t debug_string_addr, | ||||
bool is_unicode, | |||||
uint16_t length_lower_word) {} | |||||
void ProcessDebugger::OnDebuggerError(const Status &error, uint32_t type) { | void ProcessDebugger::OnDebuggerError(const Status &error, uint32_t type) { | ||||
llvm::sys::ScopedLock lock(m_mutex); | llvm::sys::ScopedLock lock(m_mutex); | ||||
Log *log = GetLog(WindowsLog::Process); | Log *log = GetLog(WindowsLog::Process); | ||||
if (m_session_data->m_initial_stop_received) { | if (m_session_data->m_initial_stop_received) { | ||||
// This happened while debugging. Do we shutdown the debugging session, | // This happened while debugging. Do we shutdown the debugging session, | ||||
// try to continue, or do something else? | // try to continue, or do something else? | ||||
Show All 36 Lines |