1 //===-- 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 24 using namespace lldb; 25 using namespace lldb_private; 26 using namespace lldb_private::process_netbsd; 27 using namespace llvm; 28 29 // ----------------------------------------------------------------------------- 30 // Public Static Methods 31 // ----------------------------------------------------------------------------- 32 33 Error NativeProcessProtocol::Launch( 34 ProcessLaunchInfo &launch_info, 35 NativeProcessProtocol::NativeDelegate &native_delegate, MainLoop &mainloop, 36 NativeProcessProtocolSP &native_process_sp) { 37 return Error(); 38 } 39 40 Error 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 50 NativeProcessNetBSD::NativeProcessNetBSD() 51 : NativeProcessProtocol(LLDB_INVALID_PROCESS_ID) {} 52