make rpcTimeout user settable
authorK. Richard Pixley <rich@cygnus>
Tue, 15 Jun 1993 19:28:40 +0000 (19:28 +0000)
committerK. Richard Pixley <rich@cygnus>
Tue, 15 Jun 1993 19:28:40 +0000 (19:28 +0000)
gdb/ChangeLog
gdb/remote-vx.c

index e580ff41ba22ecf0364949368b5061b3062cb953..468db69677ed432a733e7db91e71f23d236b8ddb 100644 (file)
@@ -1,3 +1,8 @@
+Tue Jun 15 12:26:05 1993  K. Richard Pixley  (rich@sendai.cygnus.com)
+
+       * remote-vx.c: include gdbcmd.h for setlist.
+         (_initialize_vx): make rpcTimeout user settable.
+
 Mon Jun 14 09:23:51 1993  Jim Kingdon  (kingdon@cygnus.com)
 
        * main.c, gdbcmd.h: Add function filename_completer.
index 34f1fa2b9df8f75d484d7d0b448dbdc2e885e386..a9548a9a238ca89ed4ac56fc0eddbeafc869c159 100644 (file)
@@ -27,6 +27,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 #include "command.h"
 #include "symtab.h"
 #include "complaints.h"
+#include "gdbcmd.h"
 
 #include <string.h>
 #include <errno.h>
@@ -1309,6 +1310,14 @@ struct target_ops vx_run_ops = {
 void
 _initialize_vx ()
 {
-  add_target (&vx_ops);
+  
+ add_show_from_set
+    (add_set_cmd ("rpcTimeout", class_support, var_uinteger,
+                 (char *) &rpcTimeout.tv_sec,
+                 "Set seconds to wait for rpc calls to return.\n\
+Set the number of seconds to wait for rpc calls to return.", &setlist),
+     &showlist);
+
+   add_target (&vx_ops);
   add_target (&vx_run_ops);
 }