doc: add bus libraries to release notes
[dpdk.git] / examples / ip_pipeline / main.c
index ef68c86..4944dcf 100644 (file)
@@ -45,12 +45,20 @@ main(int argc, char **argv)
 
        app_config_args(&app, argc, argv);
 
-       app_config_parse(&app, app.config_file);
+       app_config_preproc(&app);
+
+       app_config_parse(&app, app.parser_file);
 
        app_config_check(&app);
 
        /* Init */
        app_init(&app);
 
+       /* Run-time */
+       rte_eal_mp_remote_launch(
+               app_thread,
+               (void *) &app,
+               CALL_MASTER);
+
        return 0;
 }