From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=56286 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OOBaT-00009T-64 for qemu-devel@nongnu.org; Mon, 14 Jun 2010 11:28:34 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OOBaS-0007sz-3R for qemu-devel@nongnu.org; Mon, 14 Jun 2010 11:28:33 -0400 Received: from mx1.redhat.com ([209.132.183.28]:6131) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OOBaR-0007sq-Sf for qemu-devel@nongnu.org; Mon, 14 Jun 2010 11:28:32 -0400 Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id o5EFSVui009212 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Mon, 14 Jun 2010 11:28:31 -0400 From: Gerd Hoffmann Date: Mon, 14 Jun 2010 17:28:24 +0200 Message-Id: <1276529305-22640-2-git-send-email-kraxel@redhat.com> In-Reply-To: <1276529305-22640-1-git-send-email-kraxel@redhat.com> References: <1276529305-22640-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [RESENT PATCH 2/3] add unregister_displaychangelistener List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann Signed-off-by: Gerd Hoffmann --- console.h | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/console.h b/console.h index 3a80dca..a0da498 100644 --- a/console.h +++ b/console.h @@ -227,6 +227,11 @@ static inline void register_displaychangelistener(DisplayState *ds, DisplayChang QLIST_INSERT_HEAD(&ds->listeners, dcl, next); } +static inline void unregister_displaychangelistener(DisplayChangeListener *dcl) +{ + QLIST_REMOVE(dcl, next); +} + static inline void dpy_update(DisplayState *s, int x, int y, int w, int h) { struct DisplayChangeListener *dcl; -- 1.6.5.2