aboutsummaryrefslogtreecommitdiff
path: root/src/lib/daemon_destroy.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2020-06-10 21:45:34 +0200
committerChristian Grothoff <christian@grothoff.org>2020-06-10 21:45:34 +0200
commit34aa038d97938cf24b157892bcab6fec173918c8 (patch)
tree27e0dc98bfa82e59d30616e29b11e09b8f1384ed /src/lib/daemon_destroy.c
parenta019057377ee1b67d49264d1029ac615089b2422 (diff)
parentf84bdf0a8c4c11d956f63bc6378aaa7fa9bb95aa (diff)
downloadlibmicrohttpd-34aa038d97938cf24b157892bcab6fec173918c8.tar.gz
libmicrohttpd-34aa038d97938cf24b157892bcab6fec173918c8.zip
Merge branch 'master' of git+ssh://gnunet.org/libmicrohttpd
Diffstat (limited to 'src/lib/daemon_destroy.c')
-rw-r--r--src/lib/daemon_destroy.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/daemon_destroy.c b/src/lib/daemon_destroy.c
index e40ff520..07cd7158 100644
--- a/src/lib/daemon_destroy.c
+++ b/src/lib/daemon_destroy.c
@@ -53,7 +53,7 @@ stop_workers (struct MHD_Daemon *daemon)
53 if (! MHD_itc_activate_ (daemon->worker_pool[i].itc, 53 if (! MHD_itc_activate_ (daemon->worker_pool[i].itc,
54 "e")) 54 "e"))
55 MHD_PANIC (_ ( 55 MHD_PANIC (_ (
56 "Failed to signal shutdown via inter-thread communication channel.")); 56 "Failed to signal shutdown via inter-thread communication channel.\n"));
57 } 57 }
58 else 58 else
59 { 59 {
@@ -121,7 +121,7 @@ MHD_daemon_destroy (struct MHD_Daemon *daemon)
121 if (! MHD_itc_activate_ (daemon->itc, 121 if (! MHD_itc_activate_ (daemon->itc,
122 "e")) 122 "e"))
123 MHD_PANIC (_ ( 123 MHD_PANIC (_ (
124 "Failed to signal shutdown via inter-thread communication channel")); 124 "Failed to signal shutdown via inter-thread communication channel.\n"));
125 } 125 }
126 else 126 else
127 { 127 {
@@ -139,7 +139,7 @@ MHD_daemon_destroy (struct MHD_Daemon *daemon)
139 139
140 if (! MHD_join_thread_ (daemon->pid.handle)) 140 if (! MHD_join_thread_ (daemon->pid.handle))
141 { 141 {
142 MHD_PANIC (_ ("Failed to join a thread\n")); 142 MHD_PANIC (_ ("Failed to join a thread.\n"));
143 } 143 }
144 /* close_all_connections() was called in daemon thread. */ 144 /* close_all_connections() was called in daemon thread. */
145 } 145 }