]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/remote-st.c
import gdb-1999-07-05 snapshot
[thirdparty/binutils-gdb.git] / gdb / remote-st.c
1 /* Remote debugging interface for Tandem ST2000 phone switch, for GDB.
2 Copyright 1990, 1991, 1992, 1999 Free Software Foundation, Inc.
3 Contributed by Cygnus Support. Written by Jim Kingdon for Cygnus.
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
20
21 /* This file was derived from remote-eb.c, which did a similar job, but for
22 an AMD-29K running EBMON. That file was in turn derived from remote.c
23 as mentioned in the following comment (left in for comic relief):
24
25 "This is like remote.c but is for an esoteric situation--
26 having an a29k board in a PC hooked up to a unix machine with
27 a serial line, and running ctty com1 on the PC, through which
28 the unix machine can run ebmon. Not to mention that the PC
29 has PC/NFS, so it can access the same executables that gdb can,
30 over the net in real time."
31
32 In reality, this module talks to a debug monitor called 'STDEBUG', which
33 runs in a phone switch. We communicate with STDEBUG via either a direct
34 serial line, or a TCP (or possibly TELNET) stream to a terminal multiplexor,
35 which in turn talks to the phone switch. */
36
37 #include "defs.h"
38 #include "gdbcore.h"
39 #include "target.h"
40 #include "wait.h"
41
42 #ifdef ANSI_PROTOTYPES
43 #include <stdarg.h>
44 #else
45 #include <varargs.h>
46 #endif
47 #ifdef HAVE_SYS_SELECT_H
48 #include <sys/select.h>
49 #endif
50 #include <signal.h>
51 #include <sys/types.h>
52
53 #include "gdb_string.h"
54 #include "serial.h"
55
56 extern struct target_ops st2000_ops; /* Forward declaration */
57
58 static void st2000_close();
59 static void st2000_fetch_register();
60 static void st2000_store_register();
61
62 #define LOG_FILE "st2000.log"
63 #if defined (LOG_FILE)
64 FILE *log_file;
65 #endif
66
67 static int timeout = 24;
68
69 /* Descriptor for I/O to remote machine. Initialize it to -1 so that
70 st2000_open knows that we don't have a file open when the program
71 starts. */
72
73 static serial_t st2000_desc;
74
75 /* Send data to stdebug. Works just like printf. */
76
77 static void
78 #ifdef ANSI_PROTOTYPES
79 printf_stdebug(char *pattern, ...)
80 #else
81 printf_stdebug(va_alist)
82 va_dcl
83 #endif
84 {
85 va_list args;
86 char buf[200];
87
88 #ifdef ANSI_PROTOTYPES
89 va_start(args, pattern);
90 #else
91 char *pattern;
92 va_start(args);
93 pattern = va_arg(args, char *);
94 #endif
95
96 vsprintf(buf, pattern, args);
97 va_end(args);
98
99 if (SERIAL_WRITE(st2000_desc, buf, strlen(buf)))
100 fprintf(stderr, "SERIAL_WRITE failed: %s\n", safe_strerror(errno));
101 }
102
103 /* Read a character from the remote system, doing all the fancy timeout
104 stuff. */
105
106 static int
107 readchar(timeout)
108 int timeout;
109 {
110 int c;
111
112 c = SERIAL_READCHAR(st2000_desc, timeout);
113
114 #ifdef LOG_FILE
115 putc(c & 0x7f, log_file);
116 #endif
117
118 if (c >= 0)
119 return c & 0x7f;
120
121 if (c == SERIAL_TIMEOUT)
122 {
123 if (timeout == 0)
124 return c; /* Polls shouldn't generate timeout errors */
125
126 error("Timeout reading from remote system.");
127 }
128
129 perror_with_name("remote-st2000");
130 }
131
132 /* Scan input from the remote system, until STRING is found. If DISCARD is
133 non-zero, then discard non-matching input, else print it out.
134 Let the user break out immediately. */
135 static void
136 expect(string, discard)
137 char *string;
138 int discard;
139 {
140 char *p = string;
141 int c;
142
143 immediate_quit = 1;
144 while (1)
145 {
146 c = readchar(timeout);
147 if (c == *p++)
148 {
149 if (*p == '\0')
150 {
151 immediate_quit = 0;
152 return;
153 }
154 }
155 else
156 {
157 if (!discard)
158 {
159 fwrite(string, 1, (p - 1) - string, stdout);
160 putchar((char)c);
161 fflush(stdout);
162 }
163 p = string;
164 }
165 }
166 }
167
168 /* Keep discarding input until we see the STDEBUG prompt.
169
170 The convention for dealing with the prompt is that you
171 o give your command
172 o *then* wait for the prompt.
173
174 Thus the last thing that a procedure does with the serial line
175 will be an expect_prompt(). Exception: st2000_resume does not
176 wait for the prompt, because the terminal is being handed over
177 to the inferior. However, the next thing which happens after that
178 is a st2000_wait which does wait for the prompt.
179 Note that this includes abnormal exit, e.g. error(). This is
180 necessary to prevent getting into states from which we can't
181 recover. */
182 static void
183 expect_prompt(discard)
184 int discard;
185 {
186 #if defined (LOG_FILE)
187 /* This is a convenient place to do this. The idea is to do it often
188 enough that we never lose much data if we terminate abnormally. */
189 fflush(log_file);
190 #endif
191 expect ("dbug> ", discard);
192 }
193
194 /* Get a hex digit from the remote system & return its value.
195 If ignore_space is nonzero, ignore spaces (not newline, tab, etc). */
196 static int
197 get_hex_digit(ignore_space)
198 int ignore_space;
199 {
200 int ch;
201 while (1)
202 {
203 ch = readchar(timeout);
204 if (ch >= '0' && ch <= '9')
205 return ch - '0';
206 else if (ch >= 'A' && ch <= 'F')
207 return ch - 'A' + 10;
208 else if (ch >= 'a' && ch <= 'f')
209 return ch - 'a' + 10;
210 else if (ch == ' ' && ignore_space)
211 ;
212 else
213 {
214 expect_prompt(1);
215 error("Invalid hex digit from remote system.");
216 }
217 }
218 }
219
220 /* Get a byte from stdebug and put it in *BYT. Accept any number
221 leading spaces. */
222 static void
223 get_hex_byte (byt)
224 char *byt;
225 {
226 int val;
227
228 val = get_hex_digit (1) << 4;
229 val |= get_hex_digit (0);
230 *byt = val;
231 }
232
233 /* Get N 32-bit words from remote, each preceded by a space,
234 and put them in registers starting at REGNO. */
235 static void
236 get_hex_regs (n, regno)
237 int n;
238 int regno;
239 {
240 long val;
241 int i;
242
243 for (i = 0; i < n; i++)
244 {
245 int j;
246
247 val = 0;
248 for (j = 0; j < 8; j++)
249 val = (val << 4) + get_hex_digit (j == 0);
250 supply_register (regno++, (char *) &val);
251 }
252 }
253
254 /* This is called not only when we first attach, but also when the
255 user types "run" after having attached. */
256 static void
257 st2000_create_inferior (execfile, args, env)
258 char *execfile;
259 char *args;
260 char **env;
261 {
262 int entry_pt;
263
264 if (args && *args)
265 error("Can't pass arguments to remote STDEBUG process");
266
267 if (execfile == 0 || exec_bfd == 0)
268 error("No executable file specified");
269
270 entry_pt = (int) bfd_get_start_address (exec_bfd);
271
272 /* The "process" (board) is already stopped awaiting our commands, and
273 the program is already downloaded. We just set its PC and go. */
274
275 clear_proceed_status ();
276
277 /* Tell wait_for_inferior that we've started a new process. */
278 init_wait_for_inferior ();
279
280 /* Set up the "saved terminal modes" of the inferior
281 based on what modes we are starting it with. */
282 target_terminal_init ();
283
284 /* Install inferior's terminal modes. */
285 target_terminal_inferior ();
286
287 /* insert_step_breakpoint (); FIXME, do we need this? */
288 /* Let 'er rip... */
289 proceed ((CORE_ADDR)entry_pt, TARGET_SIGNAL_DEFAULT, 0);
290 }
291
292 /* Open a connection to a remote debugger.
293 NAME is the filename used for communication. */
294
295 static int baudrate = 9600;
296 static char dev_name[100];
297
298 static void
299 st2000_open(args, from_tty)
300 char *args;
301 int from_tty;
302 {
303 int n;
304 char junk[100];
305
306 target_preopen(from_tty);
307
308 n = sscanf(args, " %s %d %s", dev_name, &baudrate, junk);
309
310 if (n != 2)
311 error("Bad arguments. Usage: target st2000 <device> <speed>\n\
312 or target st2000 <host> <port>\n");
313
314 st2000_close(0);
315
316 st2000_desc = SERIAL_OPEN(dev_name);
317
318 if (!st2000_desc)
319 perror_with_name(dev_name);
320
321 SERIAL_SETBAUDRATE(st2000_desc, baudrate);
322
323 SERIAL_RAW(st2000_desc);
324
325 push_target(&st2000_ops);
326
327 #if defined (LOG_FILE)
328 log_file = fopen (LOG_FILE, "w");
329 if (log_file == NULL)
330 perror_with_name (LOG_FILE);
331 #endif
332
333 /* Hello? Are you there? */
334 printf_stdebug("\003"); /* ^C wakes up dbug */
335
336 expect_prompt(1);
337
338 if (from_tty)
339 printf("Remote %s connected to %s\n", target_shortname,
340 dev_name);
341 }
342
343 /* Close out all files and local state before this target loses control. */
344
345 static void
346 st2000_close (quitting)
347 int quitting;
348 {
349 SERIAL_CLOSE(st2000_desc);
350
351 #if defined (LOG_FILE)
352 if (log_file) {
353 if (ferror(log_file))
354 fprintf(stderr, "Error writing log file.\n");
355 if (fclose(log_file) != 0)
356 fprintf(stderr, "Error closing log file.\n");
357 }
358 #endif
359 }
360
361 /* Terminate the open connection to the remote debugger.
362 Use this when you want to detach and do something else
363 with your gdb. */
364 static void
365 st2000_detach (from_tty)
366 int from_tty;
367 {
368 pop_target(); /* calls st2000_close to do the real work */
369 if (from_tty)
370 printf ("Ending remote %s debugging\n", target_shortname);
371 }
372
373 /* Tell the remote machine to resume. */
374
375 static void
376 st2000_resume (pid, step, sig)
377 int pid, step;
378 enum target_signal sig;
379 {
380 if (step)
381 {
382 printf_stdebug ("ST\r");
383 /* Wait for the echo. */
384 expect ("ST\r", 1);
385 }
386 else
387 {
388 printf_stdebug ("GO\r");
389 /* Swallow the echo. */
390 expect ("GO\r", 1);
391 }
392 }
393
394 /* Wait until the remote machine stops, then return,
395 storing status in STATUS just as `wait' would. */
396
397 static int
398 st2000_wait (status)
399 struct target_waitstatus *status;
400 {
401 int old_timeout = timeout;
402
403 status->kind = TARGET_WAITKIND_EXITED;
404 status->value.integer = 0;
405
406 timeout = 0; /* Don't time out -- user program is running. */
407
408 expect_prompt(0); /* Wait for prompt, outputting extraneous text */
409
410 status->kind = TARGET_WAITKIND_STOPPED;
411 status->value.sig = TARGET_SIGNAL_TRAP;
412
413 timeout = old_timeout;
414
415 return 0;
416 }
417
418 /* Return the name of register number REGNO in the form input and output by
419 STDEBUG. Currently, REGISTER_NAMES just happens to contain exactly what
420 STDEBUG wants. Lets take advantage of that just as long as possible! */
421
422 static char *
423 get_reg_name (regno)
424 int regno;
425 {
426 static char buf[50];
427 const char *p;
428 char *b;
429
430 b = buf;
431
432 for (p = REGISTER_NAME (regno); *p; p++)
433 *b++ = toupper(*p);
434 *b = '\000';
435
436 return buf;
437 }
438
439 /* Read the remote registers into the block REGS. */
440
441 static void
442 st2000_fetch_registers ()
443 {
444 int regno;
445
446 /* Yeah yeah, I know this is horribly inefficient. But it isn't done
447 very often... I'll clean it up later. */
448
449 for (regno = 0; regno <= PC_REGNUM; regno++)
450 st2000_fetch_register(regno);
451 }
452
453 /* Fetch register REGNO, or all registers if REGNO is -1.
454 Returns errno value. */
455 static void
456 st2000_fetch_register (regno)
457 int regno;
458 {
459 if (regno == -1)
460 st2000_fetch_registers ();
461 else
462 {
463 char *name = get_reg_name (regno);
464 printf_stdebug ("DR %s\r", name);
465 expect (name, 1);
466 expect (" : ", 1);
467 get_hex_regs (1, regno);
468 expect_prompt (1);
469 }
470 return;
471 }
472
473 /* Store the remote registers from the contents of the block REGS. */
474
475 static void
476 st2000_store_registers ()
477 {
478 int regno;
479
480 for (regno = 0; regno <= PC_REGNUM; regno++)
481 st2000_store_register(regno);
482
483 registers_changed ();
484 }
485
486 /* Store register REGNO, or all if REGNO == 0.
487 Return errno value. */
488 static void
489 st2000_store_register (regno)
490 int regno;
491 {
492 if (regno == -1)
493 st2000_store_registers ();
494 else
495 {
496 printf_stdebug ("PR %s %x\r", get_reg_name (regno),
497 read_register (regno));
498
499 expect_prompt (1);
500 }
501 }
502
503 /* Get ready to modify the registers array. On machines which store
504 individual registers, this doesn't need to do anything. On machines
505 which store all the registers in one fell swoop, this makes sure
506 that registers contains all the registers from the program being
507 debugged. */
508
509 static void
510 st2000_prepare_to_store ()
511 {
512 /* Do nothing, since we can store individual regs */
513 }
514
515 static void
516 st2000_files_info ()
517 {
518 printf ("\tAttached to %s at %d baud.\n",
519 dev_name, baudrate);
520 }
521
522 /* Copy LEN bytes of data from debugger memory at MYADDR
523 to inferior's memory at MEMADDR. Returns length moved. */
524 static int
525 st2000_write_inferior_memory (memaddr, myaddr, len)
526 CORE_ADDR memaddr;
527 unsigned char *myaddr;
528 int len;
529 {
530 int i;
531
532 for (i = 0; i < len; i++)
533 {
534 printf_stdebug ("PM.B %x %x\r", memaddr + i, myaddr[i]);
535 expect_prompt (1);
536 }
537 return len;
538 }
539
540 /* Read LEN bytes from inferior memory at MEMADDR. Put the result
541 at debugger address MYADDR. Returns length moved. */
542 static int
543 st2000_read_inferior_memory(memaddr, myaddr, len)
544 CORE_ADDR memaddr;
545 char *myaddr;
546 int len;
547 {
548 int i;
549
550 /* Number of bytes read so far. */
551 int count;
552
553 /* Starting address of this pass. */
554 unsigned long startaddr;
555
556 /* Number of bytes to read in this pass. */
557 int len_this_pass;
558
559 /* Note that this code works correctly if startaddr is just less
560 than UINT_MAX (well, really CORE_ADDR_MAX if there was such a
561 thing). That is, something like
562 st2000_read_bytes (CORE_ADDR_MAX - 4, foo, 4)
563 works--it never adds len to memaddr and gets 0. */
564 /* However, something like
565 st2000_read_bytes (CORE_ADDR_MAX - 3, foo, 4)
566 doesn't need to work. Detect it and give up if there's an attempt
567 to do that. */
568 if (((memaddr - 1) + len) < memaddr) {
569 errno = EIO;
570 return 0;
571 }
572
573 startaddr = memaddr;
574 count = 0;
575 while (count < len)
576 {
577 len_this_pass = 16;
578 if ((startaddr % 16) != 0)
579 len_this_pass -= startaddr % 16;
580 if (len_this_pass > (len - count))
581 len_this_pass = (len - count);
582
583 printf_stdebug ("DI.L %x %x\r", startaddr, len_this_pass);
584 expect (": ", 1);
585
586 for (i = 0; i < len_this_pass; i++)
587 get_hex_byte (&myaddr[count++]);
588
589 expect_prompt (1);
590
591 startaddr += len_this_pass;
592 }
593 return len;
594 }
595
596 /* FIXME-someday! Merge these two. */
597 static int
598 st2000_xfer_inferior_memory (memaddr, myaddr, len, write, target)
599 CORE_ADDR memaddr;
600 char *myaddr;
601 int len;
602 int write;
603 struct target_ops *target; /* ignored */
604 {
605 if (write)
606 return st2000_write_inferior_memory (memaddr, myaddr, len);
607 else
608 return st2000_read_inferior_memory (memaddr, myaddr, len);
609 }
610
611 static void
612 st2000_kill (args, from_tty)
613 char *args;
614 int from_tty;
615 {
616 return; /* Ignore attempts to kill target system */
617 }
618
619 /* Clean up when a program exits.
620
621 The program actually lives on in the remote processor's RAM, and may be
622 run again without a download. Don't leave it full of breakpoint
623 instructions. */
624
625 static void
626 st2000_mourn_inferior ()
627 {
628 remove_breakpoints ();
629 unpush_target (&st2000_ops);
630 generic_mourn_inferior (); /* Do all the proper things now */
631 }
632
633 #define MAX_STDEBUG_BREAKPOINTS 16
634
635 static CORE_ADDR breakaddr[MAX_STDEBUG_BREAKPOINTS] = {0};
636
637 static int
638 st2000_insert_breakpoint (addr, shadow)
639 CORE_ADDR addr;
640 char *shadow;
641 {
642 int i;
643 CORE_ADDR bp_addr = addr;
644 int bp_size = 0;
645
646 BREAKPOINT_FROM_PC (&bp_addr, &bp_size);
647
648 for (i = 0; i <= MAX_STDEBUG_BREAKPOINTS; i++)
649 if (breakaddr[i] == 0)
650 {
651 breakaddr[i] = addr;
652
653 st2000_read_inferior_memory (bp_addr, shadow, bp_size);
654 printf_stdebug("BR %x H\r", addr);
655 expect_prompt(1);
656 return 0;
657 }
658
659 fprintf(stderr, "Too many breakpoints (> 16) for STDBUG\n");
660 return 1;
661 }
662
663 static int
664 st2000_remove_breakpoint (addr, shadow)
665 CORE_ADDR addr;
666 char *shadow;
667 {
668 int i;
669
670 for (i = 0; i < MAX_STDEBUG_BREAKPOINTS; i++)
671 if (breakaddr[i] == addr)
672 {
673 breakaddr[i] = 0;
674
675 printf_stdebug("CB %d\r", i);
676 expect_prompt(1);
677 return 0;
678 }
679
680 fprintf(stderr, "Can't find breakpoint associated with 0x%x\n", addr);
681 return 1;
682 }
683
684
685 /* Put a command string, in args, out to STDBUG. Output from STDBUG is placed
686 on the users terminal until the prompt is seen. */
687
688 static void
689 st2000_command (args, fromtty)
690 char *args;
691 int fromtty;
692 {
693 if (!st2000_desc)
694 error("st2000 target not open.");
695
696 if (!args)
697 error("Missing command.");
698
699 printf_stdebug("%s\r", args);
700 expect_prompt(0);
701 }
702
703 /* Connect the user directly to STDBUG. This command acts just like the
704 'cu' or 'tip' command. Use <CR>~. or <CR>~^D to break out. */
705
706 /*static struct ttystate ttystate;*/
707
708 static void
709 cleanup_tty()
710 {
711 printf("\r\n[Exiting connect mode]\r\n");
712 /* SERIAL_RESTORE(0, &ttystate);*/
713 }
714
715 #if 0
716 /* This all should now be in serial.c */
717
718 static void
719 connect_command (args, fromtty)
720 char *args;
721 int fromtty;
722 {
723 fd_set readfds;
724 int numfds;
725 int c;
726 char cur_esc = 0;
727
728 dont_repeat();
729
730 if (st2000_desc < 0)
731 error("st2000 target not open.");
732
733 if (args)
734 fprintf("This command takes no args. They have been ignored.\n");
735
736 printf("[Entering connect mode. Use ~. or ~^D to escape]\n");
737
738 serial_raw(0, &ttystate);
739
740 make_cleanup(cleanup_tty, 0);
741
742 FD_ZERO(&readfds);
743
744 while (1)
745 {
746 do
747 {
748 FD_SET(0, &readfds);
749 FD_SET(st2000_desc, &readfds);
750 numfds = select(sizeof(readfds)*8, &readfds, 0, 0, 0);
751 }
752 while (numfds == 0);
753
754 if (numfds < 0)
755 perror_with_name("select");
756
757 if (FD_ISSET(0, &readfds))
758 { /* tty input, send to stdebug */
759 c = getchar();
760 if (c < 0)
761 perror_with_name("connect");
762
763 printf_stdebug("%c", c);
764 switch (cur_esc)
765 {
766 case 0:
767 if (c == '\r')
768 cur_esc = c;
769 break;
770 case '\r':
771 if (c == '~')
772 cur_esc = c;
773 else
774 cur_esc = 0;
775 break;
776 case '~':
777 if (c == '.' || c == '\004')
778 return;
779 else
780 cur_esc = 0;
781 }
782 }
783
784 if (FD_ISSET(st2000_desc, &readfds))
785 {
786 while (1)
787 {
788 c = readchar(0);
789 if (c < 0)
790 break;
791 putchar(c);
792 }
793 fflush(stdout);
794 }
795 }
796 }
797 #endif /* 0 */
798
799 /* Define the target subroutine names */
800
801 struct target_ops st2000_ops ;
802
803 static void
804 init_st2000_ops(void)
805 {
806 st2000_ops.to_shortname = "st2000";
807 st2000_ops.to_longname = "Remote serial Tandem ST2000 target";
808 st2000_ops.to_doc = "Use a remote computer running STDEBUG connected by a serial line;\n\
809 or a network connection.\n\
810 Arguments are the name of the device for the serial line,\n\
811 the speed to connect at in bits per second." ;
812 st2000_ops.to_open = st2000_open;
813 st2000_ops.to_close = st2000_close;
814 st2000_ops.to_attach = 0;
815 st2000_run_ops.to_post_attach = NULL;
816 st2000_ops.to_require_attach = NULL;
817 st2000_ops.to_detach = st2000_detach;
818 st2000_ops.to_require_detach = NULL;
819 st2000_ops.to_resume = st2000_resume;
820 st2000_ops.to_wait = st2000_wait;
821 st2000_ops.to_post_wait = NULL;
822 st2000_ops.to_fetch_registers = st2000_fetch_register;
823 st2000_ops.to_store_registers = st2000_store_register;
824 st2000_ops.to_prepare_to_store = st2000_prepare_to_store;
825 st2000_ops.to_xfer_memory = st2000_xfer_inferior_memory;
826 st2000_ops.to_files_info = st2000_files_info;
827 st2000_ops.to_insert_breakpoint = st2000_insert_breakpoint;
828 st2000_ops.to_remove_breakpoint = st2000_remove_breakpoint; /* Breakpoints */
829 st2000_ops.to_terminal_init = 0;
830 st2000_ops.to_terminal_inferior = 0;
831 st2000_ops.to_terminal_ours_for_output = 0;
832 st2000_ops.to_terminal_ours = 0;
833 st2000_ops.to_terminal_info = 0; /* Terminal handling */
834 st2000_ops.to_kill = st2000_kill;
835 st2000_ops.to_load = 0; /* load */
836 st2000_ops.to_lookup_symbol = 0; /* lookup_symbol */
837 st2000_ops.to_create_inferior = st2000_create_inferior;
838 st2000_ops.to_post_startup_inferior = NULL;
839 st2000_ops.to_acknowledge_created_inferior = NULL;
840 st2000_ops.to_clone_and_follow_inferior = NULL;
841 st2000_ops.to_post_follow_inferior_by_clone = NULL;
842 st2000_run_ops.to_insert_fork_catchpoint = NULL;
843 st2000_run_ops.to_remove_fork_catchpoint = NULL;
844 st2000_run_ops.to_insert_vfork_catchpoint = NULL;
845 st2000_run_ops.to_remove_vfork_catchpoint = NULL;
846 st2000_ops.to_has_forked = NULL;
847 st2000_ops.to_has_vforked = NULL;
848 st2000_run_ops.to_can_follow_vfork_prior_to_exec = NULL;
849 st2000_ops.to_post_follow_vfork = NULL;
850 st2000_run_ops.to_insert_exec_catchpoint = NULL;
851 st2000_run_ops.to_remove_exec_catchpoint = NULL;
852 st2000_run_ops.to_has_execd = NULL;
853 st2000_run_ops.to_reported_exec_events_per_exec_call = NULL;
854 st2000_run_ops.to_has_exited = NULL;
855 st2000_ops.to_mourn_inferior = st2000_mourn_inferior;
856 st2000_ops.to_can_run = 0; /* can_run */
857 st2000_ops.to_notice_signals = 0; /* notice_signals */
858 st2000_ops.to_thread_alive = 0; /* thread alive */
859 st2000_ops.to_stop = 0; /* to_stop */
860 st2000_ops.to_pid_to_exec_file = NULL;
861 st2000_run_ops.to_core_file_to_sym_file = NULL;
862 st2000_ops.to_stratum = process_stratum;
863 st2000_ops.DONT_USE = 0; /* next */
864 st2000_ops.to_has_all_memory = 1;
865 st2000_ops.to_has_memory = 1;
866 st2000_ops.to_has_stack = 1;
867 st2000_ops.to_has_registers = 1;
868 st2000_ops.to_has_execution = 1; /* all mem, mem, stack, regs, exec */
869 st2000_ops.to_sections = 0;
870 st2000_ops.to_sections_end = 0; /* Section pointers */
871 st2000_ops.to_magic = OPS_MAGIC; /* Always the last thing */
872 } ;
873
874 void
875 _initialize_remote_st2000 ()
876 {
877 init_st2000_ops() ;
878 add_target (&st2000_ops);
879 add_com ("st2000 <command>", class_obscure, st2000_command,
880 "Send a command to the STDBUG monitor.");
881 add_com ("connect", class_obscure, connect_command,
882 "Connect the terminal directly up to the STDBUG command monitor.\n\
883 Use <CR>~. or <CR>~^D to break out.");
884 }