Clean-up: sessiond: prepend `the_` to global variable names
[lttng-tools.git] / src / bin / lttng-sessiond / process-utils.c
index a9cef051f554d68af7bedea374c422699022593f..2d629b547e396dd1eee8ff1f3c6cc5aecaaa21d5 100644 (file)
@@ -18,15 +18,15 @@ void sessiond_signal_parents(void)
         * for client side.  This ppid is the one from the
         * external process that spawned us.
         */
-       if (config.sig_parent) {
-               kill(ppid, SIGUSR1);
+       if (the_config.sig_parent) {
+               kill(the_ppid, SIGUSR1);
        }
 
        /*
         * Notify the parent of the fork() process that we are
         * ready.
         */
-       if (config.daemonize || config.background) {
-               kill(child_ppid, SIGUSR1);
+       if (the_config.daemonize || the_config.background) {
+               kill(the_child_ppid, SIGUSR1);
        }
 }
This page took 0.023192 seconds and 4 git commands to generate.