BMC_DEL_PORT
};
-static void release_lock(void *aux UNUSED);
static void parse_options(int argc, char *argv[]);
static void usage(void) NO_RETURN;
die_if_already_running();
daemonize();
- fatal_signal_add_hook(release_lock, NULL, true);
-
retval = unixctl_server_create(NULL, &unixctl);
if (retval) {
ovs_fatal(retval, "could not listen for vlog connections");
printf("\nThe default reload command is:\n%s\n", reload_command);
exit(EXIT_SUCCESS);
}
-
-/* Callback to cleanup when process is dying. */
-static void
-release_lock(void *aux UNUSED)
-{
- cfg_unlock();
-}
-