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
Post a Comment