Josef Henryson wrote:
>If I create a thread in Java and first make one call to a method in the JNI
>library and later in the same thread make another call to the same library,
>will the library in any way be able to recognize the two different calls
>being made from the same thread?
It can if you want it to.
For example, it can invoke the static method Thread.getCurrentThread().
It may also be possible to use the JNIEnv* as a proxy for the current
thread. See the JNI function AttachCurrentThread, particularly what it
does when a thread is already attached.
Or you can pass in an arg that is the current Thread.
What are you trying to accomplish by doing this?
-- GG
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Java-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/java-dev/email@hidden
This email sent to email@hidden