Fix: JUL agent connect to user and root sessiond
[lttng-ust.git] / liblttng-ust-jul / org / lttng / ust / jul / LTTngUst.java
index 33c15eb76689042b53d40ddb921d5b684e98db57..10f2a8caec370568e3aaf9f546dcfe252c5e0425 100644 (file)
@@ -63,6 +63,12 @@ public abstract class LTTngUst {
         * @param thread_id
         *            Identifier for the thread where the message originated.
         */
-    public static native void tracepoint(String msg, String logger_name, String class_name,
+
+       /* Use for a user session daemon. */
+       public static native void tracepointU(String msg, String logger_name, String class_name,
+                       String method_name, long millis, int log_level, int thread_id);
+
+       /* Use for a root session daemon. */
+       public static native void tracepointS(String msg, String logger_name, String class_name,
                        String method_name, long millis, int log_level, int thread_id);
 }
This page took 0.024534 seconds and 4 git commands to generate.