From patchwork Mon Jun 14 15:28:24 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gerd Hoffmann X-Patchwork-Id: 55554 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 9BD8DB7D69 for ; Tue, 15 Jun 2010 01:33:04 +1000 (EST) Received: from localhost ([127.0.0.1]:47790 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OOBen-0002J6-BW for incoming@patchwork.ozlabs.org; Mon, 14 Jun 2010 11:33:01 -0400 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 Received: from rincewind.home.kraxel.org (ovpn01.gateway.prod.ext.phx2.redhat.com [10.5.9.1]) by int-mx02.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id o5EFSQ2T009417; Mon, 14 Jun 2010 11:28:27 -0400 Received: by rincewind.home.kraxel.org (Postfix, from userid 500) id A9271415B7; Mon, 14 Jun 2010 17:28:25 +0200 (CEST) From: Gerd Hoffmann To: qemu-devel@nongnu.org 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> X-Scanned-By: MIMEDefang 2.67 on 10.5.11.12 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. Cc: Gerd Hoffmann Subject: [Qemu-devel] [RESENT PATCH 2/3] add unregister_displaychangelistener X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org 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;