aboutsummaryrefslogtreecommitdiffstats
path: root/src/mds-server/mds-server.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/mds-server/mds-server.c14
1 files changed, 11 insertions, 3 deletions
diff --git a/src/mds-server/mds-server.c b/src/mds-server/mds-server.c
index a77fadb..a2a506e 100644
--- a/src/mds-server/mds-server.c
+++ b/src/mds-server/mds-server.c
@@ -190,10 +190,18 @@ int __attribute__((const)) postinitialise_server(void)
*/
int master_loop(void)
{
- /* Accepting incoming connections. */
+ /* Accepting incoming connections and take care of dangers. */
while (running && (terminating == 0))
- if (accept_connection() == 1)
- break;
+ {
+ if (danger)
+ {
+ danger = 0;
+ with_mutex (slave_mutex, linked_list_pack(&client_list););
+ }
+
+ if (accept_connection() == 1)
+ break;
+ }
/* Join with all slaves threads. */
with_mutex (slave_mutex,