diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2022-02-26 18:07:22 +0000 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2022-03-07 13:16:24 +0000 |
commit | 1a11265d7e854203652606b671a0e02ba100a249 (patch) | |
tree | 7f96eae377c21e7e8b04cd329a7d907e9093308e /util/oslib-win32.c | |
parent | 88454f844efe26ea8ac7f394a72b1e6620dccf7e (diff) |
util: Put qemu_vfree() in memalign.c
qemu_vfree() is the companion free function to qemu_memalign(); put
it in memalign.c so the allocation and free functions are together.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-id: 20220226180723.1706285-9-peter.maydell@linaro.org
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Diffstat (limited to 'util/oslib-win32.c')
-rw-r--r-- | util/oslib-win32.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/util/oslib-win32.c b/util/oslib-win32.c index d9768532be..4b1ce0be4b 100644 --- a/util/oslib-win32.c +++ b/util/oslib-win32.c @@ -75,12 +75,6 @@ void *qemu_anon_ram_alloc(size_t size, uint64_t *align, bool shared, return ptr; } -void qemu_vfree(void *ptr) -{ - trace_qemu_vfree(ptr); - _aligned_free(ptr); -} - void qemu_anon_ram_free(void *ptr, size_t size) { trace_qemu_anon_ram_free(ptr, size); |