I am calling a method of my native dll from JNI. It works fine but at one place in a my native code, I am calling exit(1) so that native code stops working but what happens is that it also causes to exit from my java application. Am I missing something? Is there any method in JNI so that I can only kill native code instead of whole java application?
Edit: Basically I am encrypting a file in native code. I want it to stop encrypting when some one cancels the operation from java.
Any help would appreciated.