prompt function, called from main on MAIN lcore */
| 934 | |
| 935 | /* prompt function, called from main on MAIN lcore */ |
| 936 | static void |
| 937 | prompt(void) |
| 938 | { |
| 939 | struct cmdline *cl; |
| 940 | |
| 941 | cl = cmdline_stdin_new(main_ctx, "ntb> "); |
| 942 | if (cl == NULL) |
| 943 | return; |
| 944 | |
| 945 | cmdline_interact(cl); |
| 946 | cmdline_stdin_exit(cl); |
| 947 | } |
| 948 | |
| 949 | static void |
| 950 | signal_handler(int signum) |
no test coverage detected