Greeting.
I am Aniket. I am new to this community, hoping to get solution here.
I have created a dll file from c program.
There is a crash(SIGSEGV) in that dll for which signal handler in c is implementead
If I use the dll in another c language code, the signal handler is getting call program is exiting gracefully.
But If I tried to run the same dll function through java code, java program is crashing, why???
I am totally new JAVA, please guide me to solve this
doing all this x64 windows machine with visual studio 2019 IDE to create DLL and Eclipse for JAVA code
But want to creatr cross platform code, which can run on windows as well as linux
P.S. - I know I am rereferring NULL pointer in Addition(), that is just to trigger SIGSEGV fault, so signal_handler can get call...But currently that is not happening, instead JVM is handling that signal


