Revision 823a3f11fb8f04c3c3cc0f95f968fef1bfc6534f authored by Peter Maydell on 19 April 2022, 17:44:36 UTC, committed by Peter Maydell on 19 April 2022, 17:44:36 UTC
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
1 parent 81c7ed4
Raw File
pagesize.c
/*
 * pagesize.c - query the host about its page size
 *
 * Copyright (C) 2017, Emilio G. Cota <cota@braap.org>
 * License: GNU GPL, version 2 or later.
 *   See the COPYING file in the top-level directory.
 */

#include "qemu/osdep.h"

uintptr_t qemu_real_host_page_size;
intptr_t qemu_real_host_page_mask;

static void __attribute__((constructor)) init_real_host_page_size(void)
{
    qemu_real_host_page_size = getpagesize();
    qemu_real_host_page_mask = -(intptr_t)qemu_real_host_page_size;
}
back to top