| 91 | } |
| 92 | |
| 93 | void JNICALL Java_i2jrt_ORB_shutdown(JNIEnv *jni, jobject jThis, jboolean wait) |
| 94 | { |
| 95 | try { |
| 96 | recoverTaoORB(jni, jThis)->shutdown(wait); |
| 97 | |
| 98 | } catch (const CORBA::SystemException &se) { |
| 99 | throw_java_exception(jni, se); |
| 100 | } |
| 101 | } |
| 102 | |
| 103 | void JNICALL Java_i2jrt_ORB_destroy(JNIEnv *jni, jobject jThis) |
| 104 | { |
nothing calls this directly
no test coverage detected