diff options
author | Vladimir Chtchetkine <vchtchetkine@google.com> | 2012-03-29 07:34:07 -0700 |
---|---|---|
committer | Vladimir Chtchetkine <vchtchetkine@google.com> | 2012-03-29 07:34:07 -0700 |
commit | a7383ef4eb8d3863c8d582ea0d6b2ddb42125cba (patch) | |
tree | ab5f023b5e7666ec36760296c681921256ae74f5 /Makefile.common | |
parent | 14a4131fde5542634aede4f358cfb4761330b69a (diff) | |
download | external_qemu-a7383ef4eb8d3863c8d582ea0d6b2ddb42125cba.zip external_qemu-a7383ef4eb8d3863c8d582ea0d6b2ddb42125cba.tar.gz external_qemu-a7383ef4eb8d3863c8d582ea0d6b2ddb42125cba.tar.bz2 |
Implements asynchronous socket API
This is pretty basic API that allows to asynchronously connect to a socket, and
perform asynchronous read from / write to the connected socket.
Since all the operations (including connection) are asynchronous, all the
operation results are reported back to the client of this API via set of
callbacks that client supplied to this API.
Change-Id: I2a18f5b9c575ab7825c9e5a086f4cd9fb6b130ec
Diffstat (limited to 'Makefile.common')
-rw-r--r-- | Makefile.common | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile.common b/Makefile.common index 3d1d947..da3226e 100644 --- a/Makefile.common +++ b/Makefile.common @@ -478,6 +478,7 @@ CORE_MISC_SOURCES = \ android/snapshot.c \ android/android-device.c \ android/async-socket-connector.c \ + android/async-socket.c \ android/sensors-port.c \ android/utils/timezone.c \ android/camera/camera-format-converters.c \ |