qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH v2 16/26] monitor: Make commands public before movin


From: Benoît Canet
Subject: [Qemu-devel] [PATCH v2 16/26] monitor: Make commands public before moving them to monitor-system.c
Date: Fri, 15 Aug 2014 15:35:48 +0200

Signed-off-by: Benoît Canet <address@hidden>
---
 monitor.c | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/monitor.c b/monitor.c
index 5017ecf..6288334 100644
--- a/monitor.c
+++ b/monitor.c
@@ -173,10 +173,10 @@ static QLIST_HEAD(mon_list, Monitor) mon_list;
 static QLIST_HEAD(mon_fdsets, MonFdset) mon_fdsets;
 static int mon_refcount;
 
-static MonitorCommand mon_cmds[];
-static MonitorCommand info_cmds[];
+MonitorCommand mon_cmds[];
+MonitorCommand info_cmds[];
 
-static const MonitorCommand qmp_cmds[];
+const MonitorCommand qmp_cmds[];
 
 Monitor *cur_mon;
 Monitor *default_mon;
@@ -1189,7 +1189,7 @@ int monitor_handle_fd_param2(Monitor *mon, const char 
*fdname, Error **errp)
 }
 
 /* Please update hmp-commands.hx when adding or changing commands */
-static MonitorCommand info_cmds[] = {
+MonitorCommand info_cmds[] = {
     {
         .name       = "version",
         .args_type  = "",
@@ -1515,12 +1515,12 @@ static MonitorCommand info_cmds[] = {
 };
 
 /* mon_cmds and info_cmds would be sorted at runtime */
-static MonitorCommand mon_cmds[] = {
+MonitorCommand mon_cmds[] = {
 #include "hmp-commands.h"
     { NULL, NULL, },
 };
 
-static const MonitorCommand qmp_cmds[] = {
+const MonitorCommand qmp_cmds[] = {
 #include "qmp-commands-old.h"
     { /* NULL */ },
 };
-- 
2.1.0.rc1




reply via email to

[Prev in Thread] Current Thread [Next in Thread]