* [Qemu-devel] [5730] Use qemu_memalign instead of memalign in qemu_vmalloc
@ 2008-11-18 1:42 malc
0 siblings, 0 replies; only message in thread
From: malc @ 2008-11-18 1:42 UTC (permalink / raw)
To: qemu-devel
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
}
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2008-11-18 1:42 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-11-18 1:42 [Qemu-devel] [5730] Use qemu_memalign instead of memalign in qemu_vmalloc malc
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).