Is it feasible to attach a native thread permanently to the JVM (AttachCurrentThread) (or) is it better to attach when ever required (calling java functions) and detach immediately once the work is done
I wrote a sample native app with the above cases, didn't find any difference. But by googling, vaguely I came to know that, when attached to JVM , JVMs thread scheduling is responsible for scheduling else OS will schedule the native thread (if not attached). Is this true?
It is important to detach any thread that has been previously attached; otherwise, the program will not exit when you call DestroyJavaVM. - http://java.sun.com/developer/onlineTraining/Programming/JDCBook/jniref.html#attach
Will there by any performance issues?
Please let me know if anyone knows, its one my important design aspect.
Thanks & Regards.