WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-changelog

[Xen-changelog] Declare inline function as 'static inline', not 'extern

To: xen-changelog@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-changelog] Declare inline function as 'static inline', not 'extern inline'.
From: Xen patchbot -unstable <patchbot-unstable@xxxxxxxxxxxxxxxxxxx>
Date: Fri, 17 Mar 2006 18:22:24 +0000
Delivery-date: Fri, 17 Mar 2006 18:24:07 +0000
Envelope-to: www-data@xxxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-changelog-request@lists.xensource.com?subject=help>
List-id: BK change log <xen-changelog.lists.xensource.com>
List-post: <mailto:xen-changelog@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=unsubscribe>
Reply-to: xen-devel@xxxxxxxxxxxxxxxxxxx
Sender: xen-changelog-bounces@xxxxxxxxxxxxxxxxxxx
# HG changeset patch
# User kaf24@xxxxxxxxxxxxxxxxxxxx
# Node ID b8640cd55fd7c761012b5da101f0e77e190d4c62
# Parent  98a6f5ae7b1ffcd284e077f6d1439cb4e9adf2f2
Declare inline function as 'static inline', not 'extern inline'.
Fixes the ioemu build which was broken on some systems.

Signed-off-by: Keir Fraser <keir@xxxxxxxxxxxxx>

diff -r 98a6f5ae7b1f -r b8640cd55fd7 tools/ioemu/hw/vga.c
--- a/tools/ioemu/hw/vga.c      Fri Mar 17 10:03:37 2006
+++ b/tools/ioemu/hw/vga.c      Fri Mar 17 09:57:28 2006
@@ -1340,7 +1340,7 @@
     }
 }
 
-extern inline int cmp_vram(VGAState *s, int offset, int n)
+static inline int cmp_vram(VGAState *s, int offset, int n)
 {
     long *vp, *sp;
 

_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-changelog] Declare inline function as 'static inline', not 'extern inline'., Xen patchbot -unstable <=