int daemon_mode = 0;
char *config_file = NULL;
char *progname;
- struct thread thread;
char *zserv_path = NULL;
char *fpm_format = NULL;
/* Print banner. */
zlog_notice ("Zebra %s starting: vty@%d", QUAGGA_VERSION, vty_port);
+
+ thread_main (zebrad.master);
- while (thread_fetch (zebrad.master, &thread))
- thread_call (&thread);
-
- /* Not reached... */
return 0;
}