mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-29 05:28:00 +00:00
2288. [port] win32: mark service as running when we have finished
loading. [RT #17441]
This commit is contained in:
parent
21386ce160
commit
577272cf79
3
CHANGES
3
CHANGES
@ -1,3 +1,6 @@
|
|||||||
|
2288. [port] win32: mark service as running when we have finished
|
||||||
|
loading. [RT #17441]
|
||||||
|
|
||||||
2287. [bug] Use 'volatile' if the compiler supports it. [RT #17413]
|
2287. [bug] Use 'volatile' if the compiler supports it. [RT #17413]
|
||||||
|
|
||||||
2286. [func] Allow a TCP connection to be used as a weak
|
2286. [func] Allow a TCP connection to be used as a weak
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* PERFORMANCE OF THIS SOFTWARE.
|
* PERFORMANCE OF THIS SOFTWARE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* $Id: os.c,v 1.25 2007/06/19 23:46:59 tbox Exp $ */
|
/* $Id: os.c,v 1.26 2008/01/09 02:35:10 marka Exp $ */
|
||||||
|
|
||||||
#include <config.h>
|
#include <config.h>
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
@ -103,7 +103,16 @@ void
|
|||||||
ns_os_init(const char *progname) {
|
ns_os_init(const char *progname) {
|
||||||
ns_paths_init();
|
ns_paths_init();
|
||||||
setup_syslog(progname);
|
setup_syslog(progname);
|
||||||
ntservice_init();
|
/*
|
||||||
|
* XXXMPA. We may need to split ntservice_init() in two and
|
||||||
|
* just mark as running in ns_os_started(). If we do that
|
||||||
|
* this is where the first part of ntservice_init() should be
|
||||||
|
* called from.
|
||||||
|
*
|
||||||
|
* XXX970 Remove comment if no problems by 9.7.0.
|
||||||
|
*
|
||||||
|
* ntservice_init();
|
||||||
|
*/
|
||||||
version_check(progname);
|
version_check(progname);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -285,4 +294,5 @@ ns_os_tzset(void) {
|
|||||||
|
|
||||||
void
|
void
|
||||||
ns_os_started(void) {
|
ns_os_started(void) {
|
||||||
|
ntservice_init();
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user