daily update
[deliverable/binutils-gdb.git] / gdb / serial.c
CommitLineData
c906108c 1/* Generic serial interface routines
4fcf66da 2
197e01b6 3 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
0ea3f30e 4 2001, 2002, 2004, 2005, 2006 Free Software Foundation, Inc.
c906108c 5
c5aa993b 6 This file is part of GDB.
c906108c 7
c5aa993b
JM
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
c906108c 12
c5aa993b
JM
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
c906108c 17
c5aa993b
JM
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
197e01b6
EZ
20 Foundation, Inc., 51 Franklin Street, Fifth Floor,
21 Boston, MA 02110-1301, USA. */
c906108c
SS
22
23#include "defs.h"
24#include <ctype.h>
25#include "serial.h"
26#include "gdb_string.h"
27#include "gdbcmd.h"
28
c2c6d25f 29extern void _initialize_serial (void);
392a587b 30
2acceee2
JM
31/* Is serial being debugged? */
32
33static int global_serial_debug_p;
34
c906108c
SS
35/* Linked list of serial I/O handlers */
36
37static struct serial_ops *serial_ops_list = NULL;
38
39/* This is the last serial stream opened. Used by connect command. */
40
819cc324 41static struct serial *last_serial_opened = NULL;
c906108c
SS
42
43/* Pointer to list of scb's. */
44
819cc324 45static struct serial *scb_base;
c906108c
SS
46
47/* Non-NULL gives filename which contains a recording of the remote session,
48 suitable for playback by gdbserver. */
49
50static char *serial_logfile = NULL;
d9fcf2fb 51static struct ui_file *serial_logfp = NULL;
c906108c 52
c2c6d25f 53static struct serial_ops *serial_interface_lookup (char *);
d9fcf2fb 54static void serial_logchar (struct ui_file *stream, int ch_type, int ch, int timeout);
53904c9e
AC
55static const char logbase_hex[] = "hex";
56static const char logbase_octal[] = "octal";
57static const char logbase_ascii[] = "ascii";
58static const char *logbase_enums[] =
c5aa993b 59{logbase_hex, logbase_octal, logbase_ascii, NULL};
53904c9e 60static const char *serial_logbase = logbase_ascii;
c906108c 61\f
c5aa993b 62
c906108c
SS
63static int serial_current_type = 0;
64
65/* Log char CH of type CHTYPE, with TIMEOUT */
66
67/* Define bogus char to represent a BREAK. Should be careful to choose a value
68 that can't be confused with a normal char, or an error code. */
69#define SERIAL_BREAK 1235
70
71static void
d9fcf2fb 72serial_logchar (struct ui_file *stream, int ch_type, int ch, int timeout)
c906108c
SS
73{
74 if (ch_type != serial_current_type)
75 {
2acceee2 76 fprintf_unfiltered (stream, "\n%c ", ch_type);
c906108c
SS
77 serial_current_type = ch_type;
78 }
79
80 if (serial_logbase != logbase_ascii)
2acceee2 81 fputc_unfiltered (' ', stream);
c906108c
SS
82
83 switch (ch)
84 {
85 case SERIAL_TIMEOUT:
2acceee2 86 fprintf_unfiltered (stream, "<Timeout: %d seconds>", timeout);
c906108c
SS
87 return;
88 case SERIAL_ERROR:
2acceee2 89 fprintf_unfiltered (stream, "<Error: %s>", safe_strerror (errno));
c906108c
SS
90 return;
91 case SERIAL_EOF:
2acceee2 92 fputs_unfiltered ("<Eof>", stream);
c906108c
SS
93 return;
94 case SERIAL_BREAK:
2acceee2 95 fputs_unfiltered ("<Break>", stream);
c906108c
SS
96 return;
97 default:
98 if (serial_logbase == logbase_hex)
2acceee2 99 fprintf_unfiltered (stream, "%02x", ch & 0xff);
c906108c 100 else if (serial_logbase == logbase_octal)
2acceee2 101 fprintf_unfiltered (stream, "%03o", ch & 0xff);
c906108c
SS
102 else
103 switch (ch)
104 {
c5aa993b 105 case '\\':
2acceee2 106 fputs_unfiltered ("\\\\", stream);
c5aa993b
JM
107 break;
108 case '\b':
2acceee2 109 fputs_unfiltered ("\\b", stream);
c5aa993b
JM
110 break;
111 case '\f':
2acceee2 112 fputs_unfiltered ("\\f", stream);
c5aa993b
JM
113 break;
114 case '\n':
2acceee2 115 fputs_unfiltered ("\\n", stream);
c5aa993b
JM
116 break;
117 case '\r':
2acceee2 118 fputs_unfiltered ("\\r", stream);
c5aa993b
JM
119 break;
120 case '\t':
2acceee2 121 fputs_unfiltered ("\\t", stream);
c5aa993b
JM
122 break;
123 case '\v':
2acceee2 124 fputs_unfiltered ("\\v", stream);
c5aa993b
JM
125 break;
126 default:
2acceee2 127 fprintf_unfiltered (stream, isprint (ch) ? "%c" : "\\x%02x", ch & 0xFF);
c5aa993b 128 break;
c906108c
SS
129 }
130 }
131}
132
133void
c2c6d25f 134serial_log_command (const char *cmd)
c906108c
SS
135{
136 if (!serial_logfp)
137 return;
138
139 serial_current_type = 'c';
140
141 fputs_unfiltered ("\nc ", serial_logfp);
142 fputs_unfiltered (cmd, serial_logfp);
143
144 /* Make sure that the log file is as up-to-date as possible,
145 in case we are getting ready to dump core or something. */
146 gdb_flush (serial_logfp);
147}
148
c2c6d25f 149\f
c906108c 150static struct serial_ops *
c2c6d25f 151serial_interface_lookup (char *name)
c906108c
SS
152{
153 struct serial_ops *ops;
154
155 for (ops = serial_ops_list; ops; ops = ops->next)
156 if (strcmp (name, ops->name) == 0)
157 return ops;
158
159 return NULL;
160}
161
162void
c2c6d25f 163serial_add_interface (struct serial_ops *optable)
c906108c
SS
164{
165 optable->next = serial_ops_list;
166 serial_ops_list = optable;
167}
168
169/* Open up a device or a network socket, depending upon the syntax of NAME. */
170
819cc324 171struct serial *
c2c6d25f 172serial_open (const char *name)
c906108c 173{
819cc324 174 struct serial *scb;
c906108c 175 struct serial_ops *ops;
c2c6d25f 176 const char *open_name = name;
c906108c
SS
177
178 for (scb = scb_base; scb; scb = scb->next)
179 if (scb->name && strcmp (scb->name, name) == 0)
180 {
181 scb->refcnt++;
182 return scb;
183 }
184
50a9e2f1 185 if (strcmp (name, "pc") == 0)
c906108c 186 ops = serial_interface_lookup ("pc");
c906108c
SS
187 else if (strncmp (name, "lpt", 3) == 0)
188 ops = serial_interface_lookup ("parallel");
43e526b9 189 else if (strncmp (name, "|", 1) == 0)
c2c6d25f
JM
190 {
191 ops = serial_interface_lookup ("pipe");
192 open_name = name + 1; /* discard ``|'' */
193 }
2821caf1
JB
194 /* Check for a colon, suggesting an IP address/port pair.
195 Do this *after* checking for all the interesting prefixes. We
196 don't want to constrain the syntax of what can follow them. */
197 else if (strchr (name, ':'))
198 ops = serial_interface_lookup ("tcp");
c906108c
SS
199 else
200 ops = serial_interface_lookup ("hardwire");
201
202 if (!ops)
203 return NULL;
204
65e2f740 205 scb = XMALLOC (struct serial);
c906108c
SS
206
207 scb->ops = ops;
208
209 scb->bufcnt = 0;
210 scb->bufp = scb->buf;
211
c2c6d25f 212 if (scb->ops->open (scb, open_name))
c906108c 213 {
b8c9b27d 214 xfree (scb);
c906108c
SS
215 return NULL;
216 }
217
4fcf66da 218 scb->name = xstrdup (name);
c906108c
SS
219 scb->next = scb_base;
220 scb->refcnt = 1;
2acceee2
JM
221 scb->debug_p = 0;
222 scb->async_state = 0;
c2c6d25f
JM
223 scb->async_handler = NULL;
224 scb->async_context = NULL;
c906108c
SS
225 scb_base = scb;
226
227 last_serial_opened = scb;
228
229 if (serial_logfile != NULL)
230 {
231 serial_logfp = gdb_fopen (serial_logfile, "w");
232 if (serial_logfp == NULL)
233 perror_with_name (serial_logfile);
234 }
235
236 return scb;
237}
238
0ea3f30e
DJ
239/* Return the open serial device for FD, if found, or NULL if FD
240 is not already opened. */
241
242struct serial *
243serial_for_fd (int fd)
244{
245 struct serial *scb;
246 struct serial_ops *ops;
247
248 for (scb = scb_base; scb; scb = scb->next)
249 if (scb->fd == fd)
250 return scb;
251
252 return NULL;
253}
254
819cc324 255struct serial *
c2c6d25f 256serial_fdopen (const int fd)
c906108c 257{
819cc324 258 struct serial *scb;
c906108c
SS
259 struct serial_ops *ops;
260
261 for (scb = scb_base; scb; scb = scb->next)
262 if (scb->fd == fd)
263 {
264 scb->refcnt++;
265 return scb;
266 }
267
0ea3f30e
DJ
268 ops = serial_interface_lookup ("terminal");
269 if (!ops)
270 ops = serial_interface_lookup ("hardwire");
c906108c
SS
271
272 if (!ops)
273 return NULL;
274
0ea3f30e 275 scb = XCALLOC (1, struct serial);
c906108c
SS
276
277 scb->ops = ops;
278
279 scb->bufcnt = 0;
280 scb->bufp = scb->buf;
281
282 scb->fd = fd;
283
284 scb->name = NULL;
285 scb->next = scb_base;
286 scb->refcnt = 1;
2acceee2
JM
287 scb->debug_p = 0;
288 scb->async_state = 0;
c2c6d25f
JM
289 scb->async_handler = NULL;
290 scb->async_context = NULL;
c906108c
SS
291 scb_base = scb;
292
293 last_serial_opened = scb;
294
295 return scb;
296}
297
c2c6d25f 298static void
819cc324 299do_serial_close (struct serial *scb, int really_close)
c906108c 300{
819cc324 301 struct serial *tmp_scb;
c906108c
SS
302
303 last_serial_opened = NULL;
304
305 if (serial_logfp)
306 {
307 fputs_unfiltered ("\nEnd of log\n", serial_logfp);
308 serial_current_type = 0;
309
310 /* XXX - What if serial_logfp == gdb_stdout or gdb_stderr? */
d9fcf2fb 311 ui_file_delete (serial_logfp);
c906108c
SS
312 serial_logfp = NULL;
313 }
314
315/* This is bogus. It's not our fault if you pass us a bad scb...! Rob, you
316 should fix your code instead. */
317
318 if (!scb)
319 return;
320
321 scb->refcnt--;
322 if (scb->refcnt > 0)
323 return;
324
c2c6d25f
JM
325 /* ensure that the FD has been taken out of async mode */
326 if (scb->async_handler != NULL)
327 serial_async (scb, NULL, NULL);
328
c906108c
SS
329 if (really_close)
330 scb->ops->close (scb);
331
332 if (scb->name)
b8c9b27d 333 xfree (scb->name);
c906108c
SS
334
335 if (scb_base == scb)
336 scb_base = scb_base->next;
337 else
338 for (tmp_scb = scb_base; tmp_scb; tmp_scb = tmp_scb->next)
339 {
340 if (tmp_scb->next != scb)
341 continue;
342
343 tmp_scb->next = tmp_scb->next->next;
344 break;
345 }
346
b8c9b27d 347 xfree (scb);
c906108c
SS
348}
349
c2c6d25f 350void
819cc324 351serial_close (struct serial *scb)
c2c6d25f
JM
352{
353 do_serial_close (scb, 1);
354}
355
356void
819cc324 357serial_un_fdopen (struct serial *scb)
c2c6d25f
JM
358{
359 do_serial_close (scb, 0);
360}
361
362int
819cc324 363serial_readchar (struct serial *scb, int timeout)
c2c6d25f
JM
364{
365 int ch;
366
2df3850c
JM
367 /* FIXME: cagney/1999-10-11: Don't enable this check until the ASYNC
368 code is finished. */
2cd58942 369 if (0 && serial_is_async_p (scb) && timeout < 0)
8e65ff28 370 internal_error (__FILE__, __LINE__,
e2e0b3e5 371 _("serial_readchar: blocking read in async mode"));
2df3850c 372
c2c6d25f
JM
373 ch = scb->ops->readchar (scb, timeout);
374 if (serial_logfp != NULL)
375 {
2acceee2 376 serial_logchar (serial_logfp, 'r', ch, timeout);
c2c6d25f
JM
377
378 /* Make sure that the log file is as up-to-date as possible,
379 in case we are getting ready to dump core or something. */
380 gdb_flush (serial_logfp);
381 }
2cd58942 382 if (serial_debug_p (scb))
2acceee2
JM
383 {
384 fprintf_unfiltered (gdb_stdlog, "[");
385 serial_logchar (gdb_stdlog, 'r', ch, timeout);
386 fprintf_unfiltered (gdb_stdlog, "]");
387 gdb_flush (gdb_stdlog);
388 }
c2c6d25f
JM
389
390 return (ch);
391}
392
393int
819cc324 394serial_write (struct serial *scb, const char *str, int len)
c2c6d25f
JM
395{
396 if (serial_logfp != NULL)
397 {
398 int count;
399
400 for (count = 0; count < len; count++)
2acceee2 401 serial_logchar (serial_logfp, 'w', str[count] & 0xff, 0);
c2c6d25f
JM
402
403 /* Make sure that the log file is as up-to-date as possible,
404 in case we are getting ready to dump core or something. */
405 gdb_flush (serial_logfp);
406 }
407
408 return (scb->ops->write (scb, str, len));
409}
410
411void
819cc324 412serial_printf (struct serial *desc, const char *format,...)
c2c6d25f
JM
413{
414 va_list args;
415 char *buf;
416 va_start (args, format);
417
e623b504 418 buf = xstrvprintf (format, args);
2cd58942 419 serial_write (desc, buf, strlen (buf));
c2c6d25f 420
b8c9b27d 421 xfree (buf);
c2c6d25f
JM
422 va_end (args);
423}
424
425int
819cc324 426serial_drain_output (struct serial *scb)
c2c6d25f
JM
427{
428 return scb->ops->drain_output (scb);
429}
430
431int
819cc324 432serial_flush_output (struct serial *scb)
c2c6d25f
JM
433{
434 return scb->ops->flush_output (scb);
435}
436
437int
819cc324 438serial_flush_input (struct serial *scb)
c2c6d25f
JM
439{
440 return scb->ops->flush_input (scb);
441}
442
443int
819cc324 444serial_send_break (struct serial *scb)
c2c6d25f
JM
445{
446 if (serial_logfp != NULL)
2acceee2 447 serial_logchar (serial_logfp, 'w', SERIAL_BREAK, 0);
c2c6d25f
JM
448
449 return (scb->ops->send_break (scb));
450}
451
452void
819cc324 453serial_raw (struct serial *scb)
c2c6d25f
JM
454{
455 scb->ops->go_raw (scb);
456}
457
458serial_ttystate
819cc324 459serial_get_tty_state (struct serial *scb)
c2c6d25f
JM
460{
461 return scb->ops->get_tty_state (scb);
462}
463
464int
819cc324 465serial_set_tty_state (struct serial *scb, serial_ttystate ttystate)
c2c6d25f
JM
466{
467 return scb->ops->set_tty_state (scb, ttystate);
468}
469
470void
819cc324 471serial_print_tty_state (struct serial *scb,
c2c6d25f 472 serial_ttystate ttystate,
d9fcf2fb 473 struct ui_file *stream)
c2c6d25f
JM
474{
475 scb->ops->print_tty_state (scb, ttystate, stream);
476}
477
478int
819cc324 479serial_noflush_set_tty_state (struct serial *scb,
c2c6d25f
JM
480 serial_ttystate new_ttystate,
481 serial_ttystate old_ttystate)
482{
483 return scb->ops->noflush_set_tty_state (scb, new_ttystate, old_ttystate);
484}
485
486int
819cc324 487serial_setbaudrate (struct serial *scb, int rate)
c2c6d25f
JM
488{
489 return scb->ops->setbaudrate (scb, rate);
490}
491
492int
819cc324 493serial_setstopbits (struct serial *scb, int num)
c2c6d25f
JM
494{
495 return scb->ops->setstopbits (scb, num);
496}
497
498int
819cc324 499serial_can_async_p (struct serial *scb)
c2c6d25f
JM
500{
501 return (scb->ops->async != NULL);
502}
503
504int
819cc324 505serial_is_async_p (struct serial *scb)
c2c6d25f
JM
506{
507 return (scb->ops->async != NULL) && (scb->async_handler != NULL);
508}
509
510void
819cc324 511serial_async (struct serial *scb,
c2c6d25f
JM
512 serial_event_ftype *handler,
513 void *context)
514{
515 /* Only change mode if there is a need. */
516 if ((scb->async_handler == NULL)
517 != (handler == NULL))
518 scb->ops->async (scb, handler != NULL);
519 scb->async_handler = handler;
520 scb->async_context = context;
521}
522
523int
819cc324 524deprecated_serial_fd (struct serial *scb)
c2c6d25f
JM
525{
526 /* FIXME: should this output a warning that deprecated code is being
527 called? */
528 if (scb->fd < 0)
529 {
8e65ff28 530 internal_error (__FILE__, __LINE__,
e2e0b3e5 531 _("serial: FD not valid"));
c2c6d25f
JM
532 }
533 return scb->fd; /* sigh */
534}
535
2acceee2 536void
819cc324 537serial_debug (struct serial *scb, int debug_p)
2acceee2
JM
538{
539 scb->debug_p = debug_p;
540}
541
542int
819cc324 543serial_debug_p (struct serial *scb)
2acceee2
JM
544{
545 return scb->debug_p || global_serial_debug_p;
546}
547
0ea3f30e
DJ
548#ifdef USE_WIN32API
549void
550serial_wait_handle (struct serial *scb, HANDLE *read, HANDLE *except)
551{
552 if (scb->ops->wait_handle)
553 scb->ops->wait_handle (scb, read, except);
554 else
555 {
556 *read = (HANDLE) _get_osfhandle (scb->fd);
557 *except = NULL;
558 }
559}
560#endif
2acceee2 561
c906108c 562#if 0
819cc324
AC
563/* The connect command is #if 0 because I hadn't thought of an elegant
564 way to wait for I/O on two `struct serial *'s simultaneously. Two
565 solutions came to mind:
c906108c 566
c5aa993b
JM
567 1) Fork, and have have one fork handle the to user direction,
568 and have the other hand the to target direction. This
569 obviously won't cut it for MSDOS.
c906108c 570
c5aa993b
JM
571 2) Use something like select. This assumes that stdin and
572 the target side can both be waited on via the same
573 mechanism. This may not be true for DOS, if GDB is
574 talking to the target via a TCP socket.
819cc324 575 -grossman, 8 Jun 93 */
c906108c
SS
576
577/* Connect the user directly to the remote system. This command acts just like
578 the 'cu' or 'tip' command. Use <CR>~. or <CR>~^D to break out. */
579
819cc324 580static struct serial *tty_desc; /* Controlling terminal */
c906108c
SS
581
582static void
c2c6d25f 583cleanup_tty (serial_ttystate ttystate)
c906108c
SS
584{
585 printf_unfiltered ("\r\n[Exiting connect mode]\r\n");
2cd58942 586 serial_set_tty_state (tty_desc, ttystate);
b8c9b27d 587 xfree (ttystate);
2cd58942 588 serial_close (tty_desc);
c906108c
SS
589}
590
591static void
c2c6d25f 592connect_command (char *args, int fromtty)
c906108c
SS
593{
594 int c;
595 char cur_esc = 0;
596 serial_ttystate ttystate;
819cc324 597 struct serial *port_desc; /* TTY port */
c906108c 598
c5aa993b 599 dont_repeat ();
c906108c
SS
600
601 if (args)
c5aa993b
JM
602 fprintf_unfiltered (gdb_stderr, "This command takes no args. They have been ignored.\n");
603
604 printf_unfiltered ("[Entering connect mode. Use ~. or ~^D to escape]\n");
c906108c 605
2cd58942 606 tty_desc = serial_fdopen (0);
c906108c
SS
607 port_desc = last_serial_opened;
608
2cd58942 609 ttystate = serial_get_tty_state (tty_desc);
c906108c 610
2cd58942
AC
611 serial_raw (tty_desc);
612 serial_raw (port_desc);
c906108c
SS
613
614 make_cleanup (cleanup_tty, ttystate);
615
616 while (1)
617 {
618 int mask;
619
2cd58942 620 mask = serial_wait_2 (tty_desc, port_desc, -1);
c906108c
SS
621
622 if (mask & 2)
623 { /* tty input */
624 char cx;
625
626 while (1)
627 {
2cd58942 628 c = serial_readchar (tty_desc, 0);
c906108c
SS
629
630 if (c == SERIAL_TIMEOUT)
c5aa993b 631 break;
c906108c
SS
632
633 if (c < 0)
e2e0b3e5 634 perror_with_name (_("connect"));
c906108c
SS
635
636 cx = c;
2cd58942 637 serial_write (port_desc, &cx, 1);
c906108c
SS
638
639 switch (cur_esc)
640 {
641 case 0:
642 if (c == '\r')
643 cur_esc = c;
644 break;
645 case '\r':
646 if (c == '~')
647 cur_esc = c;
648 else
649 cur_esc = 0;
650 break;
651 case '~':
652 if (c == '.' || c == '\004')
653 return;
654 else
655 cur_esc = 0;
656 }
657 }
658 }
659
660 if (mask & 1)
661 { /* Port input */
662 char cx;
663
664 while (1)
665 {
2cd58942 666 c = serial_readchar (port_desc, 0);
c906108c
SS
667
668 if (c == SERIAL_TIMEOUT)
c5aa993b 669 break;
c906108c
SS
670
671 if (c < 0)
e2e0b3e5 672 perror_with_name (_("connect"));
c906108c
SS
673
674 cx = c;
675
2cd58942 676 serial_write (tty_desc, &cx, 1);
c906108c
SS
677 }
678 }
679 }
680}
681#endif /* 0 */
682
e3abfe1d
AC
683/* Serial set/show framework. */
684
685static struct cmd_list_element *serial_set_cmdlist;
686static struct cmd_list_element *serial_show_cmdlist;
687
688static void
689serial_set_cmd (char *args, int from_tty)
690{
691 printf_unfiltered ("\"set serial\" must be followed by the name of a command.\n");
692 help_list (serial_set_cmdlist, "set serial ", -1, gdb_stdout);
693}
694
695static void
696serial_show_cmd (char *args, int from_tty)
697{
698 cmd_show_list (serial_show_cmdlist, from_tty, "");
699}
700
701
c906108c 702void
c2c6d25f 703_initialize_serial (void)
c906108c
SS
704{
705#if 0
1bedd215
AC
706 add_com ("connect", class_obscure, connect_command, _("\
707Connect the terminal directly up to the command monitor.\n\
708Use <CR>~. or <CR>~^D to break out."));
c906108c
SS
709#endif /* 0 */
710
1bedd215
AC
711 add_prefix_cmd ("serial", class_maintenance, serial_set_cmd, _("\
712Set default serial/parallel port configuration."),
e3abfe1d
AC
713 &serial_set_cmdlist, "set serial ",
714 0/*allow-unknown*/,
715 &setlist);
716
1bedd215
AC
717 add_prefix_cmd ("serial", class_maintenance, serial_show_cmd, _("\
718Show default serial/parallel port configuration."),
e3abfe1d
AC
719 &serial_show_cmdlist, "show serial ",
720 0/*allow-unknown*/,
721 &showlist);
722
f397e303
AC
723 add_setshow_filename_cmd ("remotelogfile", no_class, &serial_logfile, _("\
724Set filename for remote session recording."), _("\
725Show filename for remote session recording."), _("\
c906108c 726This file is used to record the remote session for future playback\n\
f397e303
AC
727by gdbserver."),
728 NULL,
729 NULL, /* FIXME: i18n: */
730 &setlist, &showlist);
c906108c 731
7ab04401
AC
732 add_setshow_enum_cmd ("remotelogbase", no_class, logbase_enums,
733 &serial_logbase, _("\
734Set numerical base for remote session logging"), _("\
735Show numerical base for remote session logging"), NULL,
736 NULL,
737 NULL, /* FIXME: i18n: */
738 &setlist, &showlist);
2acceee2 739
85c07804
AC
740 add_setshow_zinteger_cmd ("serial", class_maintenance,
741 &global_serial_debug_p, _("\
742Set serial debugging."), _("\
743Show serial debugging."), _("\
744When non-zero, serial port debugging is enabled."),
745 NULL,
746 NULL, /* FIXME: i18n: */
747 &setdebuglist, &showdebuglist);
c906108c 748}
This page took 0.622959 seconds and 4 git commands to generate.