From 0c78bc628eac2cf6f285869d10c238893185f956 Mon Sep 17 00:00:00 2001 From: Oliver Smith Date: Mon, 12 Jul 2021 17:28:36 +0200 Subject: [PATCH] vty: add "show pid" Related: OS#4609 Change-Id: Ib636050afc1eed134f450f2f1cdd3b51153b0160 --- src/vty/command.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/vty/command.c b/src/vty/command.c index 67b4001dd..5001d06ee 100644 --- a/src/vty/command.c +++ b/src/vty/command.c @@ -3041,6 +3041,13 @@ DEFUN(show_online_help, return CMD_SUCCESS; } +DEFUN(show_pid, + show_pid_cmd, "show pid", SHOW_STR "Displays the process ID\n") +{ + vty_out(vty, "%d%s", getpid(), VTY_NEWLINE); + return CMD_SUCCESS; +} + DEFUN(show_uptime, show_uptime_cmd, "show uptime", SHOW_STR "Displays how long the program has been running\n") { @@ -4367,6 +4374,7 @@ void cmd_init(int terminal) install_node(&config_node, config_write_host); /* Each node's basic commands. */ + install_lib_element(VIEW_NODE, &show_pid_cmd); install_lib_element(VIEW_NODE, &show_uptime_cmd); install_lib_element(VIEW_NODE, &show_version_cmd); install_lib_element(VIEW_NODE, &show_online_help_cmd);