prompt function, called from main on MAIN lcore */
| 668 | |
| 669 | /* prompt function, called from main on MAIN lcore */ |
| 670 | static void prompt(__rte_unused void *arg1) |
| 671 | { |
| 672 | struct cmdline *cl; |
| 673 | |
| 674 | cl = cmdline_stdin_new(main_ctx, "bond6>"); |
| 675 | if (cl != NULL) { |
| 676 | cmdline_interact(cl); |
| 677 | cmdline_stdin_exit(cl); |
| 678 | } |
| 679 | } |
| 680 | |
| 681 | /* Main function, does initialisation and calls the per-lcore functions */ |
| 682 | int |
no test coverage detected