blob: 118971154901d2250c848cfc56db8b5f6f2c4a83 [file] [log] [blame]
package ncai.funcs;
/**
* @author Petr Ivanov
*
*/
public class GetThreadHandle01 extends Thread{
public native void TestFunction();
public native void TestFunction1();
public static native boolean stopsignal();
public static native void resumeagent();
static boolean NoLibrary = false;
static {
try{
System.loadLibrary("GetThreadHandle01");
}
catch(Throwable e){
NoLibrary = true;
}
}
GetThreadHandle01(String name)
{
super(name);
}
static public void main(String args[]) {
if(NoLibrary) return;
new GetThreadHandle01("java_thread").start();
special_method();
/*
while(!stopsignal()){
try {
sleep(100, 0); // milliseconds
} catch (java.lang.InterruptedException ie) {}
System.out.println("\tJAVA: main: ...");
}
try {
sleep(1000, 0); // milliseconds
} catch (java.lang.InterruptedException ie) {}
System.out.println("\tJAVA: main - exit");
*/
return;
}
public void test_java_func1(){
System.out.println("thread - java func1\n");
TestFunction();
}
public void test_java_func2(){
System.out.println("thread - java func2\n");
test_java_func3();
}
public void test_java_func3(){
System.out.println("thread - java func3\n");
TestFunction1();
}
static public void special_method() {
/*
* Transfer control to native part.
*/
try {
throw new InterruptedException();
} catch (Throwable tex) { }
return;
}
public void run() {
System.out.println("thread - java run\n");
test_java_func1();
}
}