mirror of
https://github.com/corda/corda.git
synced 2025-01-03 19:54:13 +00:00
add missing Unsafe calls for recent JDK 7 updates
This commit is contained in:
parent
e55c8eb1ff
commit
8b469195de
1
makefile
1
makefile
@ -1588,6 +1588,7 @@ endif
|
||||
|
||||
ifeq (7,$(java-version))
|
||||
test-sources := $(subst $(test)/InvokeDynamic.java,,$(test-sources))
|
||||
test-sources := $(subst $(test)/Interfaces.java,,$(test-sources))
|
||||
endif
|
||||
|
||||
test-cpp-sources = $(wildcard $(test)/*.cpp)
|
||||
|
@ -3134,6 +3134,18 @@ extern "C" AVIAN_EXPORT void JNICALL
|
||||
release(t, reinterpret_cast<object>(arguments[1]));
|
||||
}
|
||||
|
||||
extern "C" AVIAN_EXPORT jboolean JNICALL
|
||||
Avian_sun_misc_Unsafe_isBigEndian0(Thread*, object, uintptr_t*)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
extern "C" AVIAN_EXPORT jboolean JNICALL
|
||||
Avian_sun_misc_Unsafe_unalignedAccess0(Thread*, object, uintptr_t*)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
namespace {
|
||||
|
||||
namespace local {
|
||||
|
Loading…
Reference in New Issue
Block a user