src/server/daemon/httplistener.c

changeset 571
0fa595aefd0f
parent 568
3f8c587734aa
child 577
4f5ccaea4a92
equal deleted inserted replaced
570:f95868a8ec37 571:0fa595aefd0f
550 // The last acceptor will notify listener_shutdown.cond 550 // The last acceptor will notify listener_shutdown.cond
551 // It is not really necessary to wait for acceptors to shut down, 551 // It is not really necessary to wait for acceptors to shut down,
552 // we do it mostly for nicer log messages. The timeout is there 552 // we do it mostly for nicer log messages. The timeout is there
553 // for making sure, this function never blocks forever. 553 // for making sure, this function never blocks forever.
554 struct timespec ts; 554 struct timespec ts;
555 ts.tv_sec = time(NULL) + 60; 555 clock_gettime(CLOCK_REALTIME, &ts);
556 ts.tv_sec += 60;
556 pthread_cond_timedwait(&listener->shutdown_cond, &listener->shutdown_mutex, &ts); 557 pthread_cond_timedwait(&listener->shutdown_cond, &listener->shutdown_mutex, &ts);
557 558
558 pthread_mutex_unlock(&listener->shutdown_mutex); 559 pthread_mutex_unlock(&listener->shutdown_mutex);
559 } 560 }
560 561

mercurial