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-devel

[Xen-devel] [PATCH] Fix ioemu compile on Solaris

To: xen-devel@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-devel] [PATCH] Fix ioemu compile on Solaris
From: john.levon@xxxxxxx
Date: Fri, 22 Feb 2008 05:05:00 -0800
Delivery-date: Fri, 22 Feb 2008 08:38:23 -0800
Envelope-to: www-data@xxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-devel-request@lists.xensource.com?subject=help>
List-id: Xen developer discussion <xen-devel.lists.xensource.com>
List-post: <mailto:xen-devel@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=unsubscribe>
Sender: xen-devel-bounces@xxxxxxxxxxxxxxxxxxx
# HG changeset patch
# User xen-discuss@xxxxxxxxxxxxxxx
# Date 1203680243 28800
# Node ID 3a0e7fc8b4b7c650c9377c7b2a197c127913a622
# Parent  0accc274f62715d356a591d2286027f7591a9412
Fix ioemu compile on Solaris

_POSIX_C_SOURCE does not guarantee the available of the 1003.1j option
which contains posix_memalign(). Fix the test to explicitly test for
Linux.

Signed-off-by: John Levon <john.levon@xxxxxxx>

diff --git a/tools/ioemu/osdep.c b/tools/ioemu/osdep.c
--- a/tools/ioemu/osdep.c
+++ b/tools/ioemu/osdep.c
@@ -178,7 +178,7 @@ void kqemu_vfree(void *ptr)
 
 void *qemu_memalign(size_t alignment, size_t size)
 {
-#if defined(_POSIX_C_SOURCE)
+#if defined(__Linux__)
     int ret;
     void *ptr;
     ret = posix_memalign(&ptr, alignment, size);

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

<Prev in Thread] Current Thread [Next in Thread>