JNI oddity in OpenJDK
Andrew Haley
aph at redhat.com
Thu Jun 14 03:56:30 PDT 2012
On 06/14/2012 11:48 AM, Andrew Haley wrote:
> Do this:
> $ g++ -o libJNITest.so *.cpp -fpic -shared
> $ LD_PRELOAD=./libJNITest.so java JNITest
> Calling custom operator new, should now abort
> Aborted (core dumped)
Note that this will affect all calls to operator new(size_t), including
those within the JVM. It's up to you to distinguish them from your
own JNI calls, if you need to do so.
Andrew.
More information about the distro-pkg-dev
mailing list