blob: 0b4da4325f30c26f3fcf8a93db3d9dc2c45fd7ba [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package ncai.funcs;
/**
* @author Petr Ivanov
*
*/
public class GetFrameCount06n 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("GetFrameCount06n");
}
catch(Throwable e){
NoLibrary = true;
}
}
GetFrameCount06n(String name)
{
super(name);
}
static public void main(String args[]) {
if(NoLibrary) return;
new GetFrameCount06n("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();
resumeagent(); /*
while(!stopsignal())
{
try {
sleep(100, 0); // milliseconds
} catch (java.lang.InterruptedException ie) {}
//System.out.println("\tJAVA: Thread: ...");
}*/
}
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();
}
}