summaryrefslogtreecommitdiff
path: root/src/ipcpd/local/main.c
diff options
context:
space:
mode:
authordimitri staessens <dimitri.staessens@intec.ugent.be>2016-08-26 16:44:17 +0200
committerdimitri staessens <dimitri.staessens@intec.ugent.be>2016-08-26 16:44:17 +0200
commit7fd43a33c5964fcf0f8de2efc9dbf27f8db25fc4 (patch)
treed3a68ba74bd6cc5dc366649d6e29b15d697fc348 /src/ipcpd/local/main.c
parentdb1fb77187fd9170c9a0a8089225b214053f3034 (diff)
downloadouroboros-7fd43a33c5964fcf0f8de2efc9dbf27f8db25fc4.tar.gz
ouroboros-7fd43a33c5964fcf0f8de2efc9dbf27f8db25fc4.zip
ipcpd: Report pid on shutdown
IPCPs will report their pid on shutdown for faster debugging.
Diffstat (limited to 'src/ipcpd/local/main.c')
-rw-r--r--src/ipcpd/local/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ipcpd/local/main.c b/src/ipcpd/local/main.c
index 6993cea2..547e7e28 100644
--- a/src/ipcpd/local/main.c
+++ b/src/ipcpd/local/main.c
@@ -228,8 +228,8 @@ void ipcp_sig_handler(int sig, siginfo_t * info, void * c)
case SIGHUP:
case SIGQUIT:
if (info->si_pid == irmd_api) {
- LOG_DBG("Terminating by order of %d. Bye.",
- info->si_pid);
+ LOG_DBG("IPCP %d terminating by order of %d. Bye.",
+ getpid(), info->si_pid);
pthread_rwlock_wrlock(&_ipcp->state_lock);