Add debug message about dead process information 35/65735/1
authorJunghoon Park <jh9216.park@samsung.com>
Tue, 12 Apr 2016 08:39:00 +0000 (17:39 +0900)
committerJunghoon Park <jh9216.park@samsung.com>
Tue, 12 Apr 2016 08:39:00 +0000 (17:39 +0900)
Change-Id: I313e61baf0636caf284daa1c886b3c2ab8b83552
Signed-off-by: Junghoon Park <jh9216.park@samsung.com>
inc/sigchild.h

index f9a9803..8350550 100644 (file)
@@ -143,7 +143,8 @@ static void __launchpad_process_sigchld(struct signalfd_siginfo *info)
        pid_t child_pgid;
 
        child_pgid = getpgid(info->ssi_pid);
-       _D("dead_pid = %d pgid = %d", info->ssi_pid, child_pgid);
+       _D("dead_pid = %d pgid = %d signo = %d status = %d", info->ssi_pid,
+               child_pgid, info->ssi_signo, info->ssi_status);
 
        while ((child_pid = waitpid(-1, &status, WNOHANG)) > 0) {
                if (child_pid == child_pgid)