aboutsummaryrefslogtreecommitdiffstats
path: root/android/hw-pipe-net.c
diff options
context:
space:
mode:
Diffstat (limited to 'android/hw-pipe-net.c')
-rw-r--r--android/hw-pipe-net.c4
1 files changed, 2 insertions, 2 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;
}