* Prints out usage information to stdout */
| 30 | * Prints out usage information to stdout |
| 31 | */ |
| 32 | static void |
| 33 | usage(void) |
| 34 | { |
| 35 | printf("%s [EAL options] -- -p PORTMASK -n NUM_NODES -f NUM_FLOWS\n" |
| 36 | " -p PORTMASK: hexadecimal bitmask of ports to use\n" |
| 37 | " -n NUM_NODES: number of node processes to use\n" |
| 38 | " -f NUM_FLOWS: number of flows to be added in the EFD table\n", |
| 39 | progname); |
| 40 | } |
| 41 | |
| 42 | /** |
| 43 | * The ports to be used by the application are passed in |
no test coverage detected