1 //===-- AbstractSocket.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 "lldb/Host/linux/AbstractSocket.h"
11 
12 #include "llvm/ADT/StringRef.h"
13 
14 using namespace lldb;
15 using namespace lldb_private;
16 
17 AbstractSocket::AbstractSocket(bool child_processes_inherit)
18     : DomainSocket(ProtocolUnixAbstract, child_processes_inherit) {}
19 
20 size_t AbstractSocket::GetNameOffset() const { return 1; }
21 
22 void AbstractSocket::DeleteSocketFile(llvm::StringRef name) {}
23