From: Michal Gorny Date: Wed, 24 Jul 2019 11:44:43 +0000 (+0000) Subject: Revert "Revert "[lldb] [Process/NetBSD] Fix constructor after r363707"" X-Git-Tag: llvmorg-11-init~13701 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b09bc8a27dd7846ce446cab9e2548c8d29d74750;p=platform%2Fupstream%2Fllvm.git Revert "Revert "[lldb] [Process/NetBSD] Fix constructor after r363707"" The relevant changes have been reapplied, and broke build again. llvm-svn: 366889 --- diff --git a/lldb/source/Plugins/Process/NetBSD/NativeProcessNetBSD.cpp b/lldb/source/Plugins/Process/NetBSD/NativeProcessNetBSD.cpp index 32d20d2..ecba338 100644 --- a/lldb/source/Plugins/Process/NetBSD/NativeProcessNetBSD.cpp +++ b/lldb/source/Plugins/Process/NetBSD/NativeProcessNetBSD.cpp @@ -140,7 +140,7 @@ NativeProcessNetBSD::NativeProcessNetBSD(::pid_t pid, int terminal_fd, NativeDelegate &delegate, const ArchSpec &arch, MainLoop &mainloop) - : NativeProcessProtocol(pid, terminal_fd, delegate), m_arch(arch) { + : NativeProcessELF(pid, terminal_fd, delegate), m_arch(arch) { if (m_terminal_fd != -1) { Status status = EnsureFDFlags(m_terminal_fd, O_NONBLOCK); assert(status.Success());