java - Threading Issue while using JNI with CORBA -


i have java application using jni. using main thread of java creating pthread eg. t1(using pthread_create) in native.

i have ui interacting java application idl & corba. ui when call close() in java, try pthread_join() of thread t1 in native. pthread_join() failed, because trying joined different thread other main thread. suspecting here corba thread not switching main thread. please suggest me how perform phread_join().


Comments

Popular posts from this blog

hibernate - How to load global settings frequently used in application in Java -

python 3.x - Mapping specific letters onto a list of words -

objective c - Ownership modifiers with manual reference counting -