]> git.droids-corp.org - dpdk.git/blobdiff - examples/ip_pipeline/main.c
doc: add bus libraries to release notes
[dpdk.git] / examples / ip_pipeline / main.c
index ef68c8627d8eddff8d3034327291d2b869b8b996..4944dcfbde27395c70c3283012d9f4b54f3c8181 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;
 }