1061da546Spatrick //===-- Pipe.h --------------------------------------------------*- C++ -*-===// 2061da546Spatrick // 3061da546Spatrick // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4061da546Spatrick // See https://llvm.org/LICENSE.txt for license information. 5061da546Spatrick // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6061da546Spatrick // 7061da546Spatrick //===----------------------------------------------------------------------===// 8061da546Spatrick 9*dda28197Spatrick #ifndef LLDB_HOST_PIPE_H 10*dda28197Spatrick #define LLDB_HOST_PIPE_H 11061da546Spatrick 12061da546Spatrick #if defined(_WIN32) 13061da546Spatrick #include "lldb/Host/windows/PipeWindows.h" 14061da546Spatrick namespace lldb_private { 15061da546Spatrick typedef PipeWindows Pipe; 16061da546Spatrick } 17061da546Spatrick #else 18061da546Spatrick #include "lldb/Host/posix/PipePosix.h" 19061da546Spatrick namespace lldb_private { 20061da546Spatrick typedef PipePosix Pipe; 21061da546Spatrick } 22061da546Spatrick #endif 23061da546Spatrick 24*dda28197Spatrick #endif // LLDB_HOST_PIPE_H 25