我已经使用这些说明为 Windows 构建了 openj9:https ://github.com/eclipse/openj9/blob/master/buildenv/Build_Instructions_V8.md#windows
当我尝试以下代码时(Visual Studio 2017):
J9PortLibraryVersion portver;
J9PORT_SET_VERSION(&portver, J9PORT_CAPABILITY_MASK);
J9PortLibrary *portlib;
int32_t rc = j9port_allocate_library(&portver, &portlib);
if (rc != 0)
{
printf("j9port_allocate_library failed with: %d\n", rc);
return 1;
}
rc = j9port_create_library(portlib, &portver, sizeof(J9PortLibrary));
if (rc != 0)
{
printf("j9port_create_library failed with %d\n", rc);
return 1;
}
rc = j9port_startup_library(portlib);
if (rc != 0)
{
printf("j9port_startup_library failed with %d\n", rc);
return 1;
}
printf("j9port_startup_library: %d\n", rc);
我收到访问冲突j9port_startup_library
:Exception thrown at 0x00007FFF0FC9430A (j9thr29.dll) in sample.exe: 0xC0000005: Access violation reading location 0x0000000000000000.
检查 portlib 表明 portGlobals 是NULL
我认为不应该的。
当我在调试器之外运行 exe 时,我看到以下断言(由于某种原因我在调试器中看不到):
** 断言失败 ** j9prt.504 at common/j9port.c:404 Assert_PRT_true((omrthread_self() != ((void *)0)))
** 断言失败 ** omrport.0 at ../../omr/port/common/omrport.c:515 Assert_PRT_true((omrthread_self() != ((void *)0)))
我错过了一个步骤还是导致此访问冲突的原因是什么?
编辑:我使用 Visual Studio 2010 在 Windows 7 x64 上重建项目并在 VS2010 中运行在 MCE 之上,VS 显示我们崩溃了
omrthread.c
static omrthread_monitor_t
monitor_allocate(omrthread_t self, intptr_t policy, intptr_t policyData)
{
omrthread_monitor_t newMonitor;
omrthread_library_t lib = self->library;