RPCChannel.inc 917 B

1234567891011121314151617181920212223242526272829
  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. namespace llvm {
  15. bool RPCChannel::createServer() { return false; }
  16. bool RPCChannel::createClient() { return false; }
  17. bool RPCChannel::WriteBytes(const void *Data, size_t Size) { return false; }
  18. bool RPCChannel::ReadBytes(void *Data, size_t Size) { return false; }
  19. void RPCChannel::Wait() {}
  20. RPCChannel::~RPCChannel() {}
  21. } // namespace llvm