X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;ds=sidebyside;f=src%2Fbin%2Flttng-sessiond%2Fprocess-utils.c;h=d2e52172e53195b3a7f48be91de2e02237db1809;hb=90c106c686bee2d1dedf1496140f9291d3b16799;hp=a9cef051f554d68af7bedea374c422699022593f;hpb=ab5be9fa2eb5ba9600a82cd18fd3cfcbac69169a;p=lttng-tools.git diff --git a/src/bin/lttng-sessiond/process-utils.c b/src/bin/lttng-sessiond/process-utils.c index a9cef051f..d2e52172e 100644 --- a/src/bin/lttng-sessiond/process-utils.c +++ b/src/bin/lttng-sessiond/process-utils.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2011 David Goulet + * Copyright (C) 2011 EfficiOS Inc. * Copyright (C) 2011 Mathieu Desnoyers * Copyright (C) 2013 Jérémie Galarneau * @@ -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); } }