diff options
Diffstat (limited to 'libs/binder/OS.cpp')
-rw-r--r-- | libs/binder/OS.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/binder/OS.cpp b/libs/binder/OS.cpp index 77e401f83e..ce60e33ba7 100644 --- a/libs/binder/OS.cpp +++ b/libs/binder/OS.cpp @@ -67,7 +67,7 @@ std::unique_ptr<RpcTransportCtxFactory> makeDefaultRpcTransportCtxFactory() { return RpcTransportCtxFactoryRaw::make(); } -int sendMessageOnSocket( +ssize_t sendMessageOnSocket( const RpcTransportFd& socket, iovec* iovs, int niovs, const std::vector<std::variant<base::unique_fd, base::borrowed_fd>>* ancillaryFds) { if (ancillaryFds != nullptr && !ancillaryFds->empty()) { @@ -112,7 +112,7 @@ int sendMessageOnSocket( return TEMP_FAILURE_RETRY(sendmsg(socket.fd.get(), &msg, MSG_NOSIGNAL)); } -int receiveMessageFromSocket( +ssize_t receiveMessageFromSocket( const RpcTransportFd& socket, iovec* iovs, int niovs, std::vector<std::variant<base::unique_fd, base::borrowed_fd>>* ancillaryFds) { if (ancillaryFds != nullptr) { |