Copyright ownership transfer
[lttng-tools.git] / src / bin / lttng-sessiond / process-utils.c
index a9cef051f554d68af7bedea374c422699022593f..d2e52172e53195b3a7f48be91de2e02237db1809 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2011 David Goulet <david.goulet@polymtl.ca>
+ * Copyright (C) 2011 EfficiOS Inc.
  * Copyright (C) 2011 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
  * Copyright (C) 2013 Jérémie Galarneau <jeremie.galarneau@efficios.com>
  *
@@ -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.024883 seconds and 4 git commands to generate.