Sa far, we are using variable 'detach' to indicate whether the option "--service" has been set. We were using variable 'detached' to indicate that the daemon is being called from the Windows services manager.
An upcoming commit introduces command line option "--detach" for daemons running on Windows. This will cause confusion with variable names. Therefore, rename the variables. Signed-off-by: Gurucharan Shetty <gshe...@nicira.com> --- lib/daemon-windows.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/lib/daemon-windows.c b/lib/daemon-windows.c index da0bd11..a00278e 100644 --- a/lib/daemon-windows.c +++ b/lib/daemon-windows.c @@ -23,8 +23,8 @@ VLOG_DEFINE_THIS_MODULE(daemon); -static bool detach; /* Was --service specified? */ -static bool detached; /* Have we already detached? */ +static bool service_create; /* Was --service specified? */ +static bool service_started; /* Have we dispatched service to start? */ /* --service-monitor: Should the service be restarted if it dies * unexpectedly? */ @@ -77,10 +77,10 @@ service_start(int *argcp, char **argvp[]) {NULL, NULL} }; - /* 'detached' is 'false' when service_start() is called the first time. - * It is 'true', when it is called the second time by the Windows services - * manager. */ - if (detached) { + /* 'service_started' is 'false' when service_start() is called the first + * time. It is 'true', when it is called the second time by the Windows + * services manager. */ + if (service_started) { init_service_status(); wevent = CreateEvent(NULL, TRUE, FALSE, NULL); @@ -133,14 +133,14 @@ service_start(int *argcp, char **argvp[]) * options before the call-back from the service control manager. */ for (i = 0; i < argc; i ++) { if (!strcmp(argv[i], "--service")) { - detach = true; + service_create = true; } else if (!strcmp(argv[i], "--service-monitor")) { monitor = true; } } /* If '--service' is not a command line option, run in foreground. */ - if (!detach) { + if (!service_create) { return; } @@ -149,7 +149,7 @@ service_start(int *argcp, char **argvp[]) * script. */ check_service(); - detached = true; + service_started = true; /* StartServiceCtrlDispatcher blocks and returns after the service is * stopped. */ @@ -184,7 +184,7 @@ control_handler(DWORD request) bool should_service_stop(void) { - if (detached) { + if (service_started) { if (service_status.dwCurrentState != SERVICE_RUNNING) { return true; } else { -- 1.7.9.5 _______________________________________________ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev