diff options
Diffstat (limited to 'llvm/tools/lli/RPCChannel.h')
-rw-r--r-- | llvm/tools/lli/RPCChannel.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/llvm/tools/lli/RPCChannel.h b/llvm/tools/lli/RPCChannel.h index d04c8c25b49..2d8c7081284 100644 --- a/llvm/tools/lli/RPCChannel.h +++ b/llvm/tools/lli/RPCChannel.h @@ -27,8 +27,6 @@ public: RPCChannel() {} ~RPCChannel(); - static void ReportError(int rc, size_t Size, std::string &ErrorMsg); - /// Start the remote process. /// /// @returns True on success. On failure, ErrorMsg is updated with @@ -40,8 +38,8 @@ public: // This will get filled in as a point to an OS-specific structure. void *ConnectionData; - int WriteBytes(const void *Data, size_t Size); - int ReadBytes(void *Data, size_t Size); + bool WriteBytes(const void *Data, size_t Size); + bool ReadBytes(void *Data, size_t Size); void Wait(); }; |