From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=45230 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PdNsi-00011C-K3 for qemu-devel@nongnu.org; Thu, 13 Jan 2011 09:10:29 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PdNsh-000235-FK for qemu-devel@nongnu.org; Thu, 13 Jan 2011 09:10:28 -0500 Received: from mx1.redhat.com ([209.132.183.28]:29056) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PdNsh-000230-78 for qemu-devel@nongnu.org; Thu, 13 Jan 2011 09:10:27 -0500 Date: Thu, 13 Jan 2011 19:40:14 +0530 From: Amit Shah Message-ID: <20110113141014.GE19434@amit-x200.redhat.com> References: <62faeb8db4ea4f9dc0dd7778e9643d13947714ff.1294923288.git.amit.shah@redhat.com> <4D2F053E.8030008@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4D2F053E.8030008@redhat.com> Subject: [Qemu-devel] Re: [PATCH 2/5] iohandlers: Introduce assign_fd_handlers() and remove_fd_handlers List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Gerd Hoffmann Cc: qemu list , Paul Brook On (Thu) Jan 13 2011 [14:59:26], Gerd Hoffmann wrote: > >+int assign_fd_handlers(int fd, > >+ IOCanReadHandler *fd_read_poll, > >+ IOHandler *fd_read, > >+ IOHandler *fd_write, > >+ void *opaque); > >+void remove_fd_handlers(int fd); > > A comment documenting the new functions would be nice. Good idea; I'll do that. Amit