Bustage fix for bug 545295. r=me.

--HG--
extra : convert_revision : 54edfaf7f89566f86822155e90d43ec6198228c4
This commit is contained in:
Nicholas Nethercote 2010-04-05 18:12:38 -07:00
Родитель f6d50295ff
Коммит fc324918db
2 изменённых файлов: 8 добавлений и 0 удалений

Просмотреть файл

@ -42,6 +42,12 @@
using namespace avmplus;
size_t
VMPI_getVMPageSize()
{
return 4096;
}
#ifdef WIN32
void
VMPI_setPageProtection(void *address,

Просмотреть файл

@ -95,6 +95,8 @@ typedef unsigned __int64 uint64_t;
#define VMPI_isdigit isdigit
#define VMPI_getDate()
extern size_t VMPI_getVMPageSize();
extern void VMPI_setPageProtection(void *address,
size_t size,
bool executableFlag,