1 //=- RPCChannel.inc - LLVM out-of-process JIT execution for Windows --=// 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 // Implementation of the Windows-specific parts of the RPCChannel class 11 // which executes JITed code in a separate process from where it was built. 12 // 13 //===----------------------------------------------------------------------===// 14 15 namespace llvm { 16 17 bool RPCChannel::createServer() { return false; } 18 19 bool RPCChannel::createClient() { return false; } 20 21 bool RPCChannel::WriteBytes(const void *Data, size_t Size) { return false; } 22 23 bool RPCChannel::ReadBytes(void *Data, size_t Size) { return false; } 24 25 void RPCChannel::Wait() {} 26 27 RPCChannel::~RPCChannel() {} 28 29 } // namespace llvm 30