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 |