kHlpPage-iprt.cpp revision a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fc
/* $Id$ */
/** @file
* kHlpPage - Page Memory Allocation, IPRT based implementation.
*/
/*
* Copyright (C) 2007 innotek GmbH
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*/
/*******************************************************************************
* Header Files *
*******************************************************************************/
#include <k/kHlpAlloc.h>
{
switch (enmProt)
{
case KPROT_NOACCESS: return RTMEM_PROT_NONE;
case KPROT_READONLY: return RTMEM_PROT_READ;
case KPROT_EXECUTE: return RTMEM_PROT_EXEC;
default:
AssertFailed();
return ~0U;
}
}
{
int rc = VINF_SUCCESS;
if (pv)
{
if (RT_SUCCESS(rc))
else
}
return rc;
}
{
if (!rc)
return 0;
/** @todo convert iprt status code -> kErrors */
return rc;
}
{
return 0;
}