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, Error &error)
18     : DomainSocket(ProtocolUnixAbstract, child_processes_inherit, error)
19 {
20 }
21 
22 size_t
23 AbstractSocket::GetNameOffset() const
24 {
25     return 1;
26 }
27 
28 void
29 AbstractSocket::DeleteSocketFile(llvm::StringRef name)
30 {
31 }
32