aboutsummaryrefslogtreecommitdiff
path: root/include/lldb/Host/windows/HostProcessWindows.h
blob: 2d2ad0e70e8dac3cdbaffabded3662efd0c9fd8b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
//===-- HostProcessWindows.h ------------------------------------*- C++ -*-===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//

#ifndef lldb_Host_HostProcessWindows_h_
#define lldb_Host_HostProcessWindows_h_

#include "lldb/Host/HostNativeProcessBase.h"
#include "lldb/lldb-types.h"

namespace lldb_private
{

class FileSpec;

class HostProcessWindows : public HostNativeProcessBase
{
  public:
    HostProcessWindows();
    explicit HostProcessWindows(lldb::process_t process);
    ~HostProcessWindows();

    void SetOwnsHandle(bool owns);

    virtual Error Terminate();
    virtual Error GetMainModule(FileSpec &file_spec) const;

    virtual lldb::pid_t GetProcessId() const;
    virtual bool IsRunning() const;

    HostThread
    StartMonitoring(const Host::MonitorChildProcessCallback &callback, bool monitor_signals) override;

private:
    static lldb::thread_result_t MonitorThread(void *thread_arg);

    void Close();

    bool m_owns_handle;
};
}

#endif