diff options
Diffstat (limited to 'libs/binder/OS.h')
-rw-r--r-- | libs/binder/OS.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libs/binder/OS.h b/libs/binder/OS.h index fecae31763..db4b7a5379 100644 --- a/libs/binder/OS.h +++ b/libs/binder/OS.h @@ -23,7 +23,7 @@ #include <binder/RpcTransport.h> #include <utils/Errors.h> -namespace android { +namespace android::binder::os { android::base::Result<void> setNonBlocking(android::base::borrowed_fd fd); @@ -41,4 +41,6 @@ ssize_t receiveMessageFromSocket( const RpcTransportFd& socket, iovec* iovs, int niovs, std::vector<std::variant<base::unique_fd, base::borrowed_fd>>* ancillaryFds); -} // namespace android +uint64_t GetThreadId(); + +} // namespace android::binder::os |