]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
shorten the sleep in isc_nm_destroy()
authorEvan Hunt <each@isc.org>
Fri, 10 Apr 2020 23:59:24 +0000 (16:59 -0700)
committerEvan Hunt <each@isc.org>
Fri, 19 Jun 2020 19:32:43 +0000 (12:32 -0700)
when isc_nm_destroy() is called, there's a loop that waits for
other references to be detached, pausing and unpausing the netmgr
to ensure that all the workers' events are run, followed by a
1-second sleep. this caused a delay on shutdown which will be
noticeable when netmgr is used in tools other than named itself,
so the delay has now been reduced to a hundredth of a second.

lib/isc/netmgr/netmgr.c

index 0f45cc90d533bfa2aa3055a3ecf9a05b9ce1fd5f..bf0f8efdd4153d928049fab72e67727d284f6eff 100644 (file)
@@ -417,9 +417,9 @@ isc_nm_destroy(isc_nm_t **mgr0) {
                isc_nm_pause(mgr);
                isc_nm_resume(mgr);
 #ifdef WIN32
-               _sleep(1000);
+               _sleep(10);
 #else  /* ifdef WIN32 */
-               usleep(1000000);
+               usleep(10000);
 #endif /* ifdef WIN32 */
        }