From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KWJOH-00081u-DA for qemu-devel@nongnu.org; Thu, 21 Aug 2008 19:16:29 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KWJOF-0007wh-GX for qemu-devel@nongnu.org; Thu, 21 Aug 2008 19:16:28 -0400 Received: from [199.232.76.173] (port=42012 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KWJOF-0007wN-An for qemu-devel@nongnu.org; Thu, 21 Aug 2008 19:16:27 -0400 Received: from mail.codesourcery.com ([65.74.133.4]:41671) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1KWJOD-0004b3-CF for qemu-devel@nongnu.org; Thu, 21 Aug 2008 19:16:26 -0400 From: Paul Brook Subject: Re: [Qemu-devel] [5056] add DisplayState->idle (Samuel Thibault) Date: Fri, 22 Aug 2008 00:16:11 +0100 References: In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200808220016.12304.paul@codesourcery.com> Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org On Thursday 21 August 2008, Anthony Liguori wrote: > Revision: 5056 > http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=5056 > Author: aliguori > Date: 2008-08-21 20:08:55 +0000 (Thu, 21 Aug 2008) > > Log Message: > ----------- > add DisplayState->idle (Samuel Thibault) This really needs a comment saying exactly what this field means. I'm guessing it's set by the GUI routines to tell the emulated device that it doesn't need to update the display. Currently the GUI has to poll the emulated device to get updated output, which means this flag is the exact opposite of what I'd intuitively expect. Paul