qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [5730] Use qemu_memalign instead of memalign in qemu_vmallo


From: malc
Subject: [Qemu-devel] [5730] Use qemu_memalign instead of memalign in qemu_vmalloc
Date: Tue, 18 Nov 2008 01:42:15 +0000

Revision: 5730
          http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=5730
Author:   malc
Date:     2008-11-18 01:42:15 +0000 (Tue, 18 Nov 2008)

Log Message:
-----------
Use qemu_memalign instead of memalign in qemu_vmalloc

Modified Paths:
--------------
    trunk/osdep.c

Modified: trunk/osdep.c
===================================================================
--- trunk/osdep.c       2008-11-17 14:43:54 UTC (rev 5729)
+++ trunk/osdep.c       2008-11-18 01:42:15 UTC (rev 5730)
@@ -200,7 +200,7 @@
 #ifdef _BSD
     return valloc(size);
 #else
-    return memalign(getpagesize(), size);
+    return qemu_memalign(getpagesize(), size);
 #endif
 }
 






reply via email to

[Prev in Thread] Current Thread [Next in Thread]