]> git.tuebingen.mpg.de Git - dss.git/commitdiff
Log a message when sending signals to the create process.
authorAndre Noll <maan@systemlinux.org>
Mon, 5 Apr 2010 18:37:14 +0000 (20:37 +0200)
committerAndre Noll <maan@systemlinux.org>
Mon, 5 Apr 2010 18:37:14 +0000 (20:37 +0200)
dss.c

diff --git a/dss.c b/dss.c
index 53707bd1cbd6fd0da5197096dc484466ba63805f..da096aabede9f9bf26c2378cf2f5a57cd9086888 100644 (file)
--- a/dss.c
+++ b/dss.c
@@ -553,6 +553,7 @@ static void stop_create_process(void)
 {
        if (!create_pid || create_process_stopped)
                return;
+       DSS_INFO_LOG("suspending create process %d\n", (int)create_pid);
        kill(SIGSTOP, create_pid);
        create_process_stopped = 1;
 }
@@ -561,6 +562,7 @@ static void restart_create_process(void)
 {
        if (!create_pid || !create_process_stopped)
                return;
+       DSS_INFO_LOG("resuming create process %d\n", (int)create_pid);
        kill (SIGCONT, create_pid);
        create_process_stopped = 0;
 }