2014-01-23 22:19:45 +00:00
|
|
|
//=- RPCChannel.inc - LLVM out-of-process JIT execution for Windows --=//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// Implementation of the Windows-specific parts of the RPCChannel class
|
|
|
|
// which executes JITed code in a separate process from where it was built.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
|
|
|
bool RPCChannel::createServer() { return false; }
|
|
|
|
|
|
|
|
bool RPCChannel::createClient() { return false; }
|
|
|
|
|
2014-01-24 17:18:52 +00:00
|
|
|
bool RPCChannel::WriteBytes(const void *Data, size_t Size) { return false; }
|
2014-01-23 22:19:45 +00:00
|
|
|
|
2014-01-24 17:18:52 +00:00
|
|
|
bool RPCChannel::ReadBytes(void *Data, size_t Size) { return false; }
|
2014-01-23 22:19:45 +00:00
|
|
|
|
|
|
|
void RPCChannel::Wait() {}
|
|
|
|
|
|
|
|
RPCChannel::~RPCChannel() {}
|
|
|
|
|
|
|
|
} // namespace llvm
|