Fix: Copy-pasted PERROR messages may be misleading
[lttng-tools.git] / src / bin / lttng-sessiond / main.c
index 0a2f3f48fa27e08ca7881a903ef44f4dd10fcd2a..eb772fe593273f968e422b5aabeae8b686cf3e97 100644 (file)
@@ -5193,7 +5193,7 @@ int main(int argc, char **argv)
        ret = pthread_create(&apps_notify_thread, NULL,
                        ust_thread_manage_notify, (void *) NULL);
        if (ret != 0) {
-               PERROR("pthread_create apps");
+               PERROR("pthread_create notify");
                goto exit_apps_notify;
        }
 
@@ -5201,7 +5201,7 @@ int main(int argc, char **argv)
        ret = pthread_create(&jul_reg_thread, NULL,
                        jul_thread_manage_registration, (void *) NULL);
        if (ret != 0) {
-               PERROR("pthread_create apps");
+               PERROR("pthread_create JUL");
                goto exit_jul_reg;
        }
 
This page took 0.024428 seconds and 4 git commands to generate.