mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-05 07:32:36 +00:00
[Host] Fix out-of-line definition on Windows
Add missing interface changes after r365295. llvm-svn: 365358
This commit is contained in:
parent
b5a5238b6b
commit
099231839a
@ -172,7 +172,7 @@ bool Host::GetProcessInfo(lldb::pid_t pid, ProcessInstanceInfo &process_info) {
|
||||
return true;
|
||||
}
|
||||
|
||||
HostThread Host::StartMonitoringChildProcess(
|
||||
llvm::Expected<HostThread> Host::StartMonitoringChildProcess(
|
||||
const Host::MonitorChildProcessCallback &callback, lldb::pid_t pid,
|
||||
bool monitor_signals) {
|
||||
return HostThread();
|
||||
|
@ -80,7 +80,7 @@ bool HostProcessWindows::IsRunning() const {
|
||||
return (code == STILL_ACTIVE);
|
||||
}
|
||||
|
||||
HostThread HostProcessWindows::StartMonitoring(
|
||||
llvm::Expected<HostThread> HostProcessWindows::StartMonitoring(
|
||||
const Host::MonitorChildProcessCallback &callback, bool monitor_signals) {
|
||||
HostThread monitor_thread;
|
||||
MonitorInfo *info = new MonitorInfo;
|
||||
|
Loading…
Reference in New Issue
Block a user