08f7cc899eb3e5e80154bd6c3941847a301f2bba
[lttv.git] / ltt-usertrace / java / Sample.java
1 // The Sample-java.java file
2 public class Sample
3 {
4 // Declaration of the Native (C) function
5 private static native void trace_java_generic_string(String arg);
6 static {
7 System.loadLibrary("ltt-java-string");
8 }
9
10 public static void main(String[] args)
11 {
12 System.out.println("Hello world");
13 Sample.trace_java_generic_string("Tracing from java");
14 }
15 }
This page took 0.031572 seconds and 3 git commands to generate.