From fd16505ce923202f0abe74bfe7c3ba110d325ebe Mon Sep 17 00:00:00 2001 From: Vladimir Chtchetkine Date: Thu, 25 Aug 2011 08:06:26 -0700 Subject: Fix qemu pipe's 'poll' callbacks Throughout emulator's code pipe's 'poll' callback was returning PIPE_WAKE_XXX, instead of PIPE_POLL_XXX flags. This created whole sort of issues with the qemu pipe service <-> client communications. This is also a fix for http://b/issue?id=5196348 Change-Id: I92202cf4ef4554559eb022c4410ee93923edec1b --- hw/goldfish_pipe.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'hw/goldfish_pipe.h') diff --git a/hw/goldfish_pipe.h b/hw/goldfish_pipe.h index be5c449..8074619 100644 --- a/hw/goldfish_pipe.h +++ b/hw/goldfish_pipe.h @@ -85,7 +85,7 @@ typedef struct { int (*recvBuffers)( void* pipe, GoldfishPipeBuffer* buffers, int numBuffers ); /* Called when guest wants to poll the read/write status for the pipe. - * Should return a combination of PIPE_WAKE_XXX flags. + * Should return a combination of PIPE_POLL_XXX flags. */ unsigned (*poll)( void* pipe ); -- cgit v1.1