blob: 0a9c38edd6365391bb2331968485c7b4ed312505 [file] [log] [blame]
Kamil Rytarowski1a3d19d2017-03-21 17:30:47 +00001//===-- NativeProcessNetBSD.cpp ------------------------------- -*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#include "NativeProcessNetBSD.h"
11
12// C Includes
13
14// C++ Includes
15
16// Other libraries and framework includes
17
18#include "Plugins/Process/POSIX/ProcessPOSIXLog.h"
19
20// System includes - They have to be included after framework includes because
21// they define some
22// macros which collide with variable names in other modules
23
24using namespace lldb;
25using namespace lldb_private;
26using namespace lldb_private::process_netbsd;
27using namespace llvm;
28
29// -----------------------------------------------------------------------------
30// Public Static Methods
31// -----------------------------------------------------------------------------
32
33Error NativeProcessProtocol::Launch(
34 ProcessLaunchInfo &launch_info,
35 NativeProcessProtocol::NativeDelegate &native_delegate, MainLoop &mainloop,
36 NativeProcessProtocolSP &native_process_sp) {
37 return Error();
38}
39
40Error NativeProcessProtocol::Attach(
41 lldb::pid_t pid, NativeProcessProtocol::NativeDelegate &native_delegate,
42 MainLoop &mainloop, NativeProcessProtocolSP &native_process_sp) {
43 return Error();
44}
45
46// -----------------------------------------------------------------------------
47// Public Instance Methods
48// -----------------------------------------------------------------------------
49
50NativeProcessNetBSD::NativeProcessNetBSD()
51 : NativeProcessProtocol(LLDB_INVALID_PROCESS_ID) {}