summary refs log tree commit diff stats
path: root/monitor.c
diff options
context:
space:
mode:
authorHani Benhabiles <kroosec@gmail.com>2014-05-27 23:39:31 +0100
committerLuiz Capitulino <lcapitulino@redhat.com>2014-06-11 10:10:28 -0400
commitd0ece345cbe3a58a9952f0f539641009bfd7ddf9 (patch)
treeacf81b3fc68b5082a3904148a3cf2a47a27746a3 /monitor.c
parent8e5977797d76e33856506c9a0c454ae9ab23034c (diff)
downloadfocaccia-qemu-d0ece345cbe3a58a9952f0f539641009bfd7ddf9.tar.gz
focaccia-qemu-d0ece345cbe3a58a9952f0f539641009bfd7ddf9.zip
monitor: Add watchdog_action argument completion
Signed-off-by: Hani Benhabiles <hani@linux.com>
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Diffstat (limited to 'monitor.c')
-rw-r--r--monitor.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/monitor.c b/monitor.c
index e539e40b83..68d74cd351 100644
--- a/monitor.c
+++ b/monitor.c
@@ -4559,6 +4559,20 @@ void netdev_del_completion(ReadLineState *rs, int nb_args, const char *str)
     }
 }
 
+void watchdog_action_completion(ReadLineState *rs, int nb_args, const char *str)
+{
+    if (nb_args != 2) {
+        return;
+    }
+    readline_set_completion_index(rs, strlen(str));
+    add_completion_option(rs, str, "reset");
+    add_completion_option(rs, str, "shutdown");
+    add_completion_option(rs, str, "poweroff");
+    add_completion_option(rs, str, "pause");
+    add_completion_option(rs, str, "debug");
+    add_completion_option(rs, str, "none");
+}
+
 static void monitor_find_completion_by_table(Monitor *mon,
                                              const mon_cmd_t *cmd_table,
                                              char **args,