Add kernel work-around for boot_id
[lttng-tools.git] / src / bin / lttng-sessiond / main.c
index 4e5771f03639b476748c97a459e8c7aab0829fee..9b2d1fe0079c91753877dec1ca724466187ac9f3 100644 (file)
@@ -4077,14 +4077,14 @@ static void sighandler(int sig)
 {
        switch (sig) {
        case SIGPIPE:
-               DBG("SIGPIPE caugth");
+               DBG("SIGPIPE caught");
                return;
        case SIGINT:
-               DBG("SIGINT caugth");
+               DBG("SIGINT caught");
                stop_threads();
                break;
        case SIGTERM:
-               DBG("SIGTERM caugth");
+               DBG("SIGTERM caught");
                stop_threads();
                break;
        default:
@@ -4158,6 +4158,8 @@ int main(int argc, char **argv)
        void *status;
        const char *home_path;
 
+       init_kernel_workarounds();
+
        rcu_register_thread();
 
        /* Create thread quit pipe */
This page took 0.027098 seconds and 5 git commands to generate.