aboutsummaryrefslogtreecommitdiffstats
path: root/android
diff options
context:
space:
mode:
authorVladimir Chtchetkine <vchtchetkine@google.com>2011-08-25 08:17:43 -0700
committerAndroid Code Review <code-review@android.com>2011-08-25 08:17:43 -0700
commit4ffadf474d07bc3a5f1c9f61a69eef420bcb18a0 (patch)
treee7db685afc43702513f520c689e267987321d24e /android
parent6c13702fee11a40c72e71432c5438fc65602bd5d (diff)
parentfd16505ce923202f0abe74bfe7c3ba110d325ebe (diff)
downloadexternal_qemu-4ffadf474d07bc3a5f1c9f61a69eef420bcb18a0.zip
external_qemu-4ffadf474d07bc3a5f1c9f61a69eef420bcb18a0.tar.gz
external_qemu-4ffadf474d07bc3a5f1c9f61a69eef420bcb18a0.tar.bz2
Merge "Fix qemu pipe's 'poll' callbacks"
Diffstat (limited to 'android')
-rw-r--r--android/hw-pipe-net.c4
-rw-r--r--android/hw-qemud.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/android/hw-pipe-net.c b/android/hw-pipe-net.c
index b3bc6c9..2a09718 100644
--- a/android/hw-pipe-net.c
+++ b/android/hw-pipe-net.c
@@ -349,9 +349,9 @@ netPipe_poll( void* opaque )
unsigned ret = 0;
if (mask & LOOP_IO_READ)
- ret |= PIPE_WAKE_READ;
+ ret |= PIPE_POLL_IN;
if (mask & LOOP_IO_WRITE)
- ret |= PIPE_WAKE_WRITE;
+ ret |= PIPE_POLL_OUT;
return ret;
}
diff --git a/android/hw-qemud.c b/android/hw-qemud.c
index 7de66e0..44d9dd7 100644
--- a/android/hw-qemud.c
+++ b/android/hw-qemud.c
@@ -1965,9 +1965,9 @@ _qemudPipe_poll(void* opaque)
unsigned ret = 0;
if (client != NULL) {
- ret |= PIPE_WAKE_WRITE;
+ ret |= PIPE_POLL_OUT;
if (client->ProtocolSelector.Pipe.messages != NULL) {
- ret |= PIPE_WAKE_READ;
+ ret |= PIPE_POLL_IN;
}
} else {
D("%s: Unexpected NULL client", __FUNCTION__);