1 /* Select target systems and architectures at runtime for GDB.
2 Copyright 1990, 1992, 1993, 1994 Free Software Foundation, Inc.
3 Contributed by Cygnus Support.
5 This file is part of GDB.
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.
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.
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., 675 Mass Ave, Cambridge, MA 02139, USA. */
37 target_info PARAMS ((char *, int));
40 cleanup_target PARAMS ((struct target_ops *));
43 maybe_kill_then_create_inferior PARAMS ((char *, char *, char **));
46 maybe_kill_then_attach PARAMS ((char *, int));
49 kill_or_be_killed PARAMS ((int));
52 default_terminal_info PARAMS ((char *, int));
55 nosymbol PARAMS ((char *, CORE_ADDR *));
58 tcomplain PARAMS ((void));
61 nomemory PARAMS ((CORE_ADDR, char *, int, int, struct target_ops *));
64 return_zero PARAMS ((void));
67 ignore PARAMS ((void));
70 target_command PARAMS ((char *, int));
72 static struct target_ops *
73 find_default_run_target PARAMS ((char *));
75 /* Pointer to array of target architecture structures; the size of the
76 array; the current index into the array; the allocated size of the
78 struct target_ops **target_structs;
79 unsigned target_struct_size;
80 unsigned target_struct_index;
81 unsigned target_struct_allocsize;
82 #define DEFAULT_ALLOCSIZE 10
84 /* The initial current target, so that there is always a semi-valid
87 struct target_ops dummy_target = {"None", "None", "",
88 0, 0, /* open, close */
89 find_default_attach, 0, /* attach, detach */
90 0, 0, /* resume, wait */
91 0, 0, 0, /* registers */
94 0, 0, 0, 0, 0, /* terminal */
95 0, 0, /* kill, load */
96 0, /* lookup_symbol */
97 find_default_create_inferior, /* create_inferior */
98 0, /* mourn_inferior */
100 0, /* notice_signals */
101 dummy_stratum, 0, /* stratum, next */
102 0, 0, 0, 0, 0, /* all mem, mem, stack, regs, exec */
103 0, 0, /* section pointers */
107 /* Top of target stack. */
109 struct target_stack_item *target_stack;
111 /* The target structure we are currently using to talk to a process
112 or file or whatever "inferior" we have. */
114 struct target_ops current_target;
116 /* Command list for target. */
118 static struct cmd_list_element *targetlist = NULL;
120 /* Nonzero if we are debugging an attached outside process
121 rather than an inferior. */
125 /* The user just typed 'target' without the name of a target. */
129 target_command (arg, from_tty)
133 fputs_filtered ("Argument required (target name). Try `help target'\n",
137 /* Add a possible target architecture to the list. */
141 struct target_ops *t;
145 target_struct_allocsize = DEFAULT_ALLOCSIZE;
146 target_structs = (struct target_ops **) xmalloc
147 (target_struct_allocsize * sizeof (*target_structs));
149 if (target_struct_size >= target_struct_allocsize)
151 target_struct_allocsize *= 2;
152 target_structs = (struct target_ops **)
153 xrealloc ((char *) target_structs,
154 target_struct_allocsize * sizeof (*target_structs));
156 target_structs[target_struct_size++] = t;
157 /* cleanup_target (t);*/
159 if (targetlist == NULL)
160 add_prefix_cmd ("target", class_run, target_command,
161 "Connect to a target machine or process.\n\
162 The first argument is the type or protocol of the target machine.\n\
163 Remaining arguments are interpreted by the target protocol. For more\n\
164 information on the arguments for a particular protocol, type\n\
165 `help target ' followed by the protocol name.",
166 &targetlist, "target ", 0, &cmdlist);
167 add_cmd (t->to_shortname, no_class, t->to_open, t->to_doc, &targetlist);
179 nomemory (memaddr, myaddr, len, write, t)
184 struct target_ops *t;
186 errno = EIO; /* Can't read/write this location */
187 return 0; /* No bytes handled */
193 error ("You can't do that when your target is `%s'",
194 current_target.to_shortname);
200 error ("You can't do that without a process to debug");
205 nosymbol (name, addrp)
209 return 1; /* Symbol does not exist in target env */
214 default_terminal_info (args, from_tty)
218 printf_unfiltered("No saved terminal information.\n");
221 /* This is the default target_create_inferior and target_attach function.
222 If the current target is executing, it asks whether to kill it off.
223 If this function returns without calling error(), it has killed off
224 the target, and the operation should be attempted. */
227 kill_or_be_killed (from_tty)
230 if (target_has_execution)
232 printf_unfiltered ("You are already running a program:\n");
233 target_files_info ();
234 if (query ("Kill it? ")) {
236 if (target_has_execution)
237 error ("Killing the program did not help.");
240 error ("Program not killed.");
247 maybe_kill_then_attach (args, from_tty)
251 kill_or_be_killed (from_tty);
252 target_attach (args, from_tty);
256 maybe_kill_then_create_inferior (exec, args, env)
261 kill_or_be_killed (0);
262 target_create_inferior (exec, args, env);
265 /* Clean up a target struct so it no longer has any zero pointers in it.
266 We default entries, at least to stubs that print error messages. */
270 struct target_ops *t;
273 #define de_fault(field, value) \
274 if (!t->field) t->field = value
276 /* FIELD DEFAULT VALUE */
278 de_fault (to_open, (void (*)())tcomplain);
279 de_fault (to_close, (void (*)())ignore);
280 de_fault (to_attach, maybe_kill_then_attach);
281 de_fault (to_detach, (void (*)())ignore);
282 de_fault (to_resume, (void (*)())noprocess);
283 de_fault (to_wait, (int (*)())noprocess);
284 de_fault (to_fetch_registers, (void (*)())ignore);
285 de_fault (to_store_registers, (void (*)())noprocess);
286 de_fault (to_prepare_to_store, (void (*)())noprocess);
287 de_fault (to_xfer_memory, (int (*)())nomemory);
288 de_fault (to_files_info, (void (*)())ignore);
289 de_fault (to_insert_breakpoint, memory_insert_breakpoint);
290 de_fault (to_remove_breakpoint, memory_remove_breakpoint);
291 de_fault (to_terminal_init, ignore);
292 de_fault (to_terminal_inferior, ignore);
293 de_fault (to_terminal_ours_for_output,ignore);
294 de_fault (to_terminal_ours, ignore);
295 de_fault (to_terminal_info, default_terminal_info);
296 de_fault (to_kill, (void (*)())noprocess);
297 de_fault (to_load, (void (*)())tcomplain);
298 de_fault (to_lookup_symbol, nosymbol);
299 de_fault (to_create_inferior, maybe_kill_then_create_inferior);
300 de_fault (to_mourn_inferior, (void (*)())noprocess);
301 de_fault (to_can_run, return_zero);
302 de_fault (to_notice_signals, (void (*)())ignore);
307 /* Go through the target stack from top to bottom, copying over zero entries in
308 current_target. In effect, we are doing class inheritance through the
309 pushed target vectors. */
312 update_current_target ()
314 struct target_stack_item *item;
315 struct target_ops *t;
317 /* First, reset current_target */
318 memset (¤t_target, 0, sizeof current_target);
320 for (item = target_stack; item; item = item->next)
322 t = item->target_ops;
324 #define INHERIT(FIELD, TARGET) \
325 if (!current_target.FIELD) \
326 current_target.FIELD = TARGET->FIELD
328 INHERIT (to_shortname, t);
329 INHERIT (to_longname, t);
331 INHERIT (to_open, t);
332 INHERIT (to_close, t);
333 INHERIT (to_attach, t);
334 INHERIT (to_detach, t);
335 INHERIT (to_resume, t);
336 INHERIT (to_wait, t);
337 INHERIT (to_fetch_registers, t);
338 INHERIT (to_store_registers, t);
339 INHERIT (to_prepare_to_store, t);
340 INHERIT (to_xfer_memory, t);
341 INHERIT (to_files_info, t);
342 INHERIT (to_insert_breakpoint, t);
343 INHERIT (to_remove_breakpoint, t);
344 INHERIT (to_terminal_init, t);
345 INHERIT (to_terminal_inferior, t);
346 INHERIT (to_terminal_ours_for_output, t);
347 INHERIT (to_terminal_ours, t);
348 INHERIT (to_terminal_info, t);
349 INHERIT (to_kill, t);
350 INHERIT (to_load, t);
351 INHERIT (to_lookup_symbol, t);
352 INHERIT (to_create_inferior, t);
353 INHERIT (to_mourn_inferior, t);
354 INHERIT (to_can_run, t);
355 INHERIT (to_notice_signals, t);
356 INHERIT (to_stratum, t);
357 INHERIT (DONT_USE, t);
358 INHERIT (to_has_all_memory, t);
359 INHERIT (to_has_memory, t);
360 INHERIT (to_has_stack, t);
361 INHERIT (to_has_registers, t);
362 INHERIT (to_has_execution, t);
363 INHERIT (to_sections, t);
364 INHERIT (to_sections_end, t);
365 INHERIT (to_magic, t);
371 /* Push a new target type into the stack of the existing target accessors,
372 possibly superseding some of the existing accessors.
374 Result is zero if the pushed target ended up on top of the stack,
375 nonzero if at least one target is on top of it.
377 Rather than allow an empty stack, we always have the dummy target at
378 the bottom stratum, so we can call the function vectors without
383 struct target_ops *t;
385 struct target_stack_item *cur, *prev, *tmp;
387 /* Check magic number. If wrong, it probably means someone changed
388 the struct definition, but not all the places that initialize one. */
389 if (t->to_magic != OPS_MAGIC)
391 fprintf_unfiltered(gdb_stderr,
392 "Magic number of %s target struct wrong\n",
397 /* Find the proper stratum to install this target in. */
399 for (prev = NULL, cur = target_stack; cur; prev = cur, cur = cur->next)
401 if ((int)(t->to_stratum) >= (int)(cur->target_ops->to_stratum))
405 /* If there's already targets at this stratum, remove them. */
408 while (t->to_stratum == cur->target_ops->to_stratum)
410 /* There's already something on this stratum. Close it off. */
411 (cur->target_ops->to_close) (0);
413 prev->next = cur->next; /* Unchain old target_ops */
415 target_stack = cur->next; /* Unchain first on list */
421 /* We have removed all targets in our stratum, now add the new one. */
423 tmp = (struct target_stack_item *)
424 xmalloc (sizeof (struct target_stack_item));
433 update_current_target ();
435 cleanup_target (¤t_target); /* Fill in the gaps */
439 /* Remove a target_ops vector from the stack, wherever it may be.
440 Return how many times it was removed (0 or 1). */
444 struct target_ops *t;
446 struct target_stack_item *cur, *prev;
449 t->to_close (0); /* Let it clean up */
451 /* Look for the specified target. Note that we assume that a target
452 can only occur once in the target stack. */
454 for (cur = target_stack, prev = NULL; cur; prev = cur, cur = cur->next)
455 if (cur->target_ops == t)
459 return 0; /* Didn't find target_ops, quit now */
461 /* Unchain the target */
464 target_stack = cur->next;
466 prev->next = cur->next;
468 free (cur); /* Release the target_stack_item */
470 update_current_target ();
471 cleanup_target (¤t_target);
479 (current_target.to_close)(0); /* Let it clean up */
480 if (unpush_target (target_stack->target_ops) == 1)
483 fprintf_unfiltered(gdb_stderr,
484 "pop_target couldn't find target %s\n",
485 current_target.to_shortname);
490 #define MIN(A, B) (((A) <= (B)) ? (A) : (B))
492 /* target_read_string -- read a null terminated string, up to LEN bytes,
493 from MEMADDR in target. Set *ERRNOP to the errno code, or 0 if successful.
494 Set *STRING to a pointer to malloc'd memory containing the data; the caller
495 is responsible for freeing it. Return the number of bytes successfully
499 target_read_string (memaddr, string, len, errnop)
505 int tlen, origlen, offset, i;
509 int buffer_allocated;
511 unsigned int nbytes_read = 0;
513 /* Small for testing. */
514 buffer_allocated = 4;
515 buffer = xmalloc (buffer_allocated);
522 tlen = MIN (len, 4 - (memaddr & 3));
523 offset = memaddr & 3;
525 errcode = target_xfer_memory (memaddr & ~3, buf, 4, 0);
529 if (bufptr - buffer + tlen > buffer_allocated)
532 bytes = bufptr - buffer;
533 buffer_allocated *= 2;
534 buffer = xrealloc (buffer, buffer_allocated);
535 bufptr = buffer + bytes;
538 for (i = 0; i < tlen; i++)
540 *bufptr++ = buf[i + offset];
541 if (buf[i + offset] == '\000')
543 nbytes_read += i + 1;
560 /* Read LEN bytes of target memory at address MEMADDR, placing the results in
561 GDB's memory at MYADDR. Returns either 0 for success or an errno value
564 If an error occurs, no guarantee is made about the contents of the data at
565 MYADDR. In particular, the caller should not depend upon partial reads
566 filling the buffer with good data. There is no way for the caller to know
567 how much good data might have been transfered anyway. Callers that can
568 deal with partial reads should call target_read_memory_partial. */
571 target_read_memory (memaddr, myaddr, len)
576 return target_xfer_memory (memaddr, myaddr, len, 0);
579 /* Read LEN bytes of target memory at address MEMADDR, placing the results
580 in GDB's memory at MYADDR. Returns a count of the bytes actually read,
581 and optionally an errno value in the location pointed to by ERRNOPTR
582 if ERRNOPTR is non-null. */
585 target_read_memory_partial (memaddr, myaddr, len, errnoptr)
591 int nread; /* Number of bytes actually read. */
592 int errcode; /* Error from last read. */
594 /* First try a complete read. */
595 errcode = target_xfer_memory (memaddr, myaddr, len, 0);
603 /* Loop, reading one byte at a time until we get as much as we can. */
604 for (errcode = 0, nread = 0; len > 0 && errcode == 0; nread++, len--)
606 errcode = target_xfer_memory (memaddr++, myaddr++, 1, 0);
608 /* If an error, the last read was unsuccessful, so adjust count. */
614 if (errnoptr != NULL)
622 target_write_memory (memaddr, myaddr, len)
627 return target_xfer_memory (memaddr, myaddr, len, 1);
630 /* Move memory to or from the targets. Iterate until all of it has
631 been moved, if necessary. The top target gets priority; anything
632 it doesn't want, is offered to the next one down, etc. Note the
633 business with curlen: if an early target says "no, but I have a
634 boundary overlapping this xfer" then we shorten what we offer to
635 the subsequent targets so the early guy will get a chance at the
636 tail before the subsequent ones do.
638 Result is 0 or errno value. */
641 target_xfer_memory (memaddr, myaddr, len, write)
649 struct target_ops *t;
650 struct target_stack_item *item;
652 /* to_xfer_memory is not guaranteed to set errno, even when it returns
656 /* The quick case is that the top target does it all. */
657 res = current_target.to_xfer_memory
658 (memaddr, myaddr, len, write, ¤t_target);
664 /* If res <= 0 then we call it again in the loop. Ah well. */
668 curlen = len; /* Want to do it all */
669 for (item = target_stack; item; item = item->next)
671 t = item->target_ops;
672 if (!t->to_has_memory)
675 res = t->to_xfer_memory (memaddr, myaddr, curlen, write, t);
677 break; /* Handled all or part of xfer */
678 if (t->to_has_all_memory)
684 /* If this address is for nonexistent memory,
685 read zeros if reading, or do nothing if writing. Return error. */
687 memset (myaddr, 0, len);
698 return 0; /* We managed to cover it all somehow. */
704 target_info (args, from_tty)
708 struct target_ops *t;
709 struct target_stack_item *item;
712 if (symfile_objfile != NULL)
713 printf_unfiltered ("Symbols from \"%s\".\n", symfile_objfile->name);
715 #ifdef FILES_INFO_HOOK
716 if (FILES_INFO_HOOK ())
720 for (item = target_stack; item; item = item->next)
722 t = item->target_ops;
724 if (!t->to_has_memory)
727 if ((int)(t->to_stratum) <= (int)dummy_stratum)
730 printf_unfiltered("\tWhile running this, GDB does not access memory from...\n");
731 printf_unfiltered("%s:\n", t->to_longname);
732 (t->to_files_info)(t);
733 has_all_mem = t->to_has_all_memory;
737 /* This is to be called by the open routine before it does
741 target_preopen (from_tty)
746 if (target_has_execution)
748 if (query ("A program is being debugged already. Kill it? "))
751 error ("Program not killed.");
754 /* Calling target_kill may remove the target from the stack. But if
755 it doesn't (which seems like a win for UDI), remove it now. */
757 if (target_has_execution)
761 /* Detach a target after doing deferred register stores. */
764 target_detach (args, from_tty)
768 /* Handle any optimized stores to the inferior. */
769 #ifdef DO_DEFERRED_STORES
772 (current_target.to_detach) (args, from_tty);
776 target_link (modname, t_reloc)
780 if (STREQ(current_target.to_shortname, "rombug"))
782 (current_target.to_lookup_symbol) (modname, t_reloc);
784 error("Unable to link to %s and get relocation in rombug", modname);
787 *t_reloc = (CORE_ADDR)-1;
790 /* Look through the list of possible targets for a target that can
791 execute a run or attach command without any other data. This is
792 used to locate the default process stratum.
794 Result is always valid (error() is called for errors). */
796 static struct target_ops *
797 find_default_run_target (do_mesg)
800 struct target_ops **t;
801 struct target_ops *runable = NULL;
806 for (t = target_structs; t < target_structs + target_struct_size;
809 if (target_can_run(*t))
817 error ("Don't know how to %s. Try \"help target\".", do_mesg);
823 find_default_attach (args, from_tty)
827 struct target_ops *t;
829 t = find_default_run_target("attach");
830 (t->to_attach) (args, from_tty);
835 find_default_create_inferior (exec_file, allargs, env)
840 struct target_ops *t;
842 t = find_default_run_target("run");
843 (t->to_create_inferior) (exec_file, allargs, env);
856 struct target_ops **t;
857 struct target_ops *runable = NULL;
862 for (t = target_structs; t < target_structs + target_struct_size;
865 if ((*t)->to_stratum == core_stratum)
872 return(count == 1 ? runable : NULL);
875 /* The inferior process has died. Long live the inferior! */
878 generic_mourn_inferior ()
880 extern int show_breakpoint_hit_counts;
884 breakpoint_init_inferior ();
885 registers_changed ();
887 #ifdef CLEAR_DEFERRED_STORES
888 /* Delete any pending stores to the inferior... */
889 CLEAR_DEFERRED_STORES;
893 reinit_frame_cache ();
895 /* It is confusing to the user for ignore counts to stick around
896 from previous runs of the inferior. So clear them. */
897 /* However, it is more confusing for the ignore counts to disappear when
898 using hit counts. So don't clear them if we're counting hits. */
899 if (!show_breakpoint_hit_counts)
900 breakpoint_clear_ignore_counts ();
903 /* This table must match in order and size the signals in enum target_signal
911 {"SIGHUP", "Hangup"},
912 {"SIGINT", "Interrupt"},
914 {"SIGILL", "Illegal instruction"},
915 {"SIGTRAP", "Trace/breakpoint trap"},
916 {"SIGABRT", "Aborted"},
917 {"SIGEMT", "Emulation trap"},
918 {"SIGFPE", "Arithmetic exception"},
919 {"SIGKILL", "Killed"},
920 {"SIGBUS", "Bus error"},
921 {"SIGSEGV", "Segmentation fault"},
922 {"SIGSYS", "Bad system call"},
923 {"SIGPIPE", "Broken pipe"},
924 {"SIGALRM", "Alarm clock"},
925 {"SIGTERM", "Terminated"},
926 {"SIGURG", "Urgent I/O condition"},
927 {"SIGSTOP", "Stopped (signal)"},
928 {"SIGTSTP", "Stopped (user)"},
929 {"SIGCONT", "Continued"},
930 {"SIGCHLD", "Child status changed"},
931 {"SIGTTIN", "Stopped (tty input)"},
932 {"SIGTTOU", "Stopped (tty output)"},
933 {"SIGIO", "I/O possible"},
934 {"SIGXCPU", "CPU time limit exceeded"},
935 {"SIGXFSZ", "File size limit exceeded"},
936 {"SIGVTALRM", "Virtual timer expired"},
937 {"SIGPROF", "Profiling timer expired"},
938 {"SIGWINCH", "Window size changed"},
939 {"SIGLOST", "Resource lost"},
940 {"SIGUSR1", "User defined signal 1"},
941 {"SIGUSR2", "User defined signal 2"},
942 {"SIGPWR", "Power fail/restart"},
943 {"SIGPOLL", "Pollable event occurred"},
944 {"SIGWIND", "SIGWIND"},
945 {"SIGPHONE", "SIGPHONE"},
946 {"SIGWAITING", "Process's LWPs are blocked"},
947 {"SIGLWP", "Signal LWP"},
948 {"SIGDANGER", "Swap space dangerously low"},
949 {"SIGGRANT", "Monitor mode granted"},
950 {"SIGRETRACT", "Need to relinguish monitor mode"},
951 {"SIGMSG", "Monitor mode data available"},
952 {"SIGSOUND", "Sound completed"},
953 {"SIGSAK", "Secure attention"},
954 {NULL, "Unknown signal"},
955 {NULL, "Internal error: printing TARGET_SIGNAL_DEFAULT"},
957 /* Last entry, used to check whether the table is the right size. */
958 {NULL, "TARGET_SIGNAL_MAGIC"}
961 /* Return the string for a signal. */
963 target_signal_to_string (sig)
964 enum target_signal sig;
966 return signals[sig].string;
969 /* Return the name for a signal. */
971 target_signal_to_name (sig)
972 enum target_signal sig;
974 if (sig == TARGET_SIGNAL_UNKNOWN)
975 /* I think the code which prints this will always print it along with
976 the string, so no need to be verbose. */
978 return signals[sig].name;
981 /* Given a name, return its signal. */
983 target_signal_from_name (name)
986 enum target_signal sig;
988 /* It's possible we also should allow "SIGCLD" as well as "SIGCHLD"
989 for TARGET_SIGNAL_SIGCHLD. SIGIOT, on the other hand, is more
990 questionable; seems like by now people should call it SIGABRT
993 /* This ugly cast brought to you by the native VAX compiler. */
994 for (sig = TARGET_SIGNAL_HUP;
995 signals[sig].name != NULL;
996 sig = (enum target_signal)((int)sig + 1))
997 if (STREQ (name, signals[sig].name))
999 return TARGET_SIGNAL_UNKNOWN;
1002 /* The following functions are to help certain targets deal
1003 with the signal/waitstatus stuff. They could just as well be in
1004 a file called native-utils.c or unixwaitstatus-utils.c or whatever. */
1006 /* Convert host signal to our signals. */
1008 target_signal_from_host (hostsig)
1011 /* A switch statement would make sense but would require special kludges
1012 to deal with the cases where more than one signal has the same number. */
1014 if (hostsig == 0) return TARGET_SIGNAL_0;
1016 #if defined (SIGHUP)
1017 if (hostsig == SIGHUP) return TARGET_SIGNAL_HUP;
1019 #if defined (SIGINT)
1020 if (hostsig == SIGINT) return TARGET_SIGNAL_INT;
1022 #if defined (SIGQUIT)
1023 if (hostsig == SIGQUIT) return TARGET_SIGNAL_QUIT;
1025 #if defined (SIGILL)
1026 if (hostsig == SIGILL) return TARGET_SIGNAL_ILL;
1028 #if defined (SIGTRAP)
1029 if (hostsig == SIGTRAP) return TARGET_SIGNAL_TRAP;
1031 #if defined (SIGABRT)
1032 if (hostsig == SIGABRT) return TARGET_SIGNAL_ABRT;
1034 #if defined (SIGEMT)
1035 if (hostsig == SIGEMT) return TARGET_SIGNAL_EMT;
1037 #if defined (SIGFPE)
1038 if (hostsig == SIGFPE) return TARGET_SIGNAL_FPE;
1040 #if defined (SIGKILL)
1041 if (hostsig == SIGKILL) return TARGET_SIGNAL_KILL;
1043 #if defined (SIGBUS)
1044 if (hostsig == SIGBUS) return TARGET_SIGNAL_BUS;
1046 #if defined (SIGSEGV)
1047 if (hostsig == SIGSEGV) return TARGET_SIGNAL_SEGV;
1049 #if defined (SIGSYS)
1050 if (hostsig == SIGSYS) return TARGET_SIGNAL_SYS;
1052 #if defined (SIGPIPE)
1053 if (hostsig == SIGPIPE) return TARGET_SIGNAL_PIPE;
1055 #if defined (SIGALRM)
1056 if (hostsig == SIGALRM) return TARGET_SIGNAL_ALRM;
1058 #if defined (SIGTERM)
1059 if (hostsig == SIGTERM) return TARGET_SIGNAL_TERM;
1061 #if defined (SIGUSR1)
1062 if (hostsig == SIGUSR1) return TARGET_SIGNAL_USR1;
1064 #if defined (SIGUSR2)
1065 if (hostsig == SIGUSR2) return TARGET_SIGNAL_USR2;
1067 #if defined (SIGCLD)
1068 if (hostsig == SIGCLD) return TARGET_SIGNAL_CHLD;
1070 #if defined (SIGCHLD)
1071 if (hostsig == SIGCHLD) return TARGET_SIGNAL_CHLD;
1073 #if defined (SIGPWR)
1074 if (hostsig == SIGPWR) return TARGET_SIGNAL_PWR;
1076 #if defined (SIGWINCH)
1077 if (hostsig == SIGWINCH) return TARGET_SIGNAL_WINCH;
1079 #if defined (SIGURG)
1080 if (hostsig == SIGURG) return TARGET_SIGNAL_URG;
1083 if (hostsig == SIGIO) return TARGET_SIGNAL_IO;
1085 #if defined (SIGPOLL)
1086 if (hostsig == SIGPOLL) return TARGET_SIGNAL_POLL;
1088 #if defined (SIGSTOP)
1089 if (hostsig == SIGSTOP) return TARGET_SIGNAL_STOP;
1091 #if defined (SIGTSTP)
1092 if (hostsig == SIGTSTP) return TARGET_SIGNAL_TSTP;
1094 #if defined (SIGCONT)
1095 if (hostsig == SIGCONT) return TARGET_SIGNAL_CONT;
1097 #if defined (SIGTTIN)
1098 if (hostsig == SIGTTIN) return TARGET_SIGNAL_TTIN;
1100 #if defined (SIGTTOU)
1101 if (hostsig == SIGTTOU) return TARGET_SIGNAL_TTOU;
1103 #if defined (SIGVTALRM)
1104 if (hostsig == SIGVTALRM) return TARGET_SIGNAL_VTALRM;
1106 #if defined (SIGPROF)
1107 if (hostsig == SIGPROF) return TARGET_SIGNAL_PROF;
1109 #if defined (SIGXCPU)
1110 if (hostsig == SIGXCPU) return TARGET_SIGNAL_XCPU;
1112 #if defined (SIGXFSZ)
1113 if (hostsig == SIGXFSZ) return TARGET_SIGNAL_XFSZ;
1115 #if defined (SIGWIND)
1116 if (hostsig == SIGWIND) return TARGET_SIGNAL_WIND;
1118 #if defined (SIGPHONE)
1119 if (hostsig == SIGPHONE) return TARGET_SIGNAL_PHONE;
1121 #if defined (SIGLOST)
1122 if (hostsig == SIGLOST) return TARGET_SIGNAL_LOST;
1124 #if defined (SIGWAITING)
1125 if (hostsig == SIGWAITING) return TARGET_SIGNAL_WAITING;
1127 #if defined (SIGLWP)
1128 if (hostsig == SIGLWP) return TARGET_SIGNAL_LWP;
1130 #if defined (SIGDANGER)
1131 if (hostsig == SIGDANGER) return TARGET_SIGNAL_DANGER;
1133 #if defined (SIGGRANT)
1134 if (hostsig == SIGGRANT) return TARGET_SIGNAL_GRANT;
1136 #if defined (SIGRETRACT)
1137 if (hostsig == SIGRETRACT) return TARGET_SIGNAL_RETRACT;
1139 #if defined (SIGMSG)
1140 if (hostsig == SIGMSG) return TARGET_SIGNAL_MSG;
1142 #if defined (SIGSOUND)
1143 if (hostsig == SIGSOUND) return TARGET_SIGNAL_SOUND;
1145 #if defined (SIGSAK)
1146 if (hostsig == SIGSAK) return TARGET_SIGNAL_SAK;
1148 return TARGET_SIGNAL_UNKNOWN;
1152 target_signal_to_host (oursig)
1153 enum target_signal oursig;
1157 case TARGET_SIGNAL_0: return 0;
1159 #if defined (SIGHUP)
1160 case TARGET_SIGNAL_HUP: return SIGHUP;
1162 #if defined (SIGINT)
1163 case TARGET_SIGNAL_INT: return SIGINT;
1165 #if defined (SIGQUIT)
1166 case TARGET_SIGNAL_QUIT: return SIGQUIT;
1168 #if defined (SIGILL)
1169 case TARGET_SIGNAL_ILL: return SIGILL;
1171 #if defined (SIGTRAP)
1172 case TARGET_SIGNAL_TRAP: return SIGTRAP;
1174 #if defined (SIGABRT)
1175 case TARGET_SIGNAL_ABRT: return SIGABRT;
1177 #if defined (SIGEMT)
1178 case TARGET_SIGNAL_EMT: return SIGEMT;
1180 #if defined (SIGFPE)
1181 case TARGET_SIGNAL_FPE: return SIGFPE;
1183 #if defined (SIGKILL)
1184 case TARGET_SIGNAL_KILL: return SIGKILL;
1186 #if defined (SIGBUS)
1187 case TARGET_SIGNAL_BUS: return SIGBUS;
1189 #if defined (SIGSEGV)
1190 case TARGET_SIGNAL_SEGV: return SIGSEGV;
1192 #if defined (SIGSYS)
1193 case TARGET_SIGNAL_SYS: return SIGSYS;
1195 #if defined (SIGPIPE)
1196 case TARGET_SIGNAL_PIPE: return SIGPIPE;
1198 #if defined (SIGALRM)
1199 case TARGET_SIGNAL_ALRM: return SIGALRM;
1201 #if defined (SIGTERM)
1202 case TARGET_SIGNAL_TERM: return SIGTERM;
1204 #if defined (SIGUSR1)
1205 case TARGET_SIGNAL_USR1: return SIGUSR1;
1207 #if defined (SIGUSR2)
1208 case TARGET_SIGNAL_USR2: return SIGUSR2;
1210 #if defined (SIGCHLD) || defined (SIGCLD)
1211 case TARGET_SIGNAL_CHLD:
1212 #if defined (SIGCHLD)
1217 #endif /* SIGCLD or SIGCHLD */
1218 #if defined (SIGPWR)
1219 case TARGET_SIGNAL_PWR: return SIGPWR;
1221 #if defined (SIGWINCH)
1222 case TARGET_SIGNAL_WINCH: return SIGWINCH;
1224 #if defined (SIGURG)
1225 case TARGET_SIGNAL_URG: return SIGURG;
1228 case TARGET_SIGNAL_IO: return SIGIO;
1230 #if defined (SIGPOLL)
1231 case TARGET_SIGNAL_POLL: return SIGPOLL;
1233 #if defined (SIGSTOP)
1234 case TARGET_SIGNAL_STOP: return SIGSTOP;
1236 #if defined (SIGTSTP)
1237 case TARGET_SIGNAL_TSTP: return SIGTSTP;
1239 #if defined (SIGCONT)
1240 case TARGET_SIGNAL_CONT: return SIGCONT;
1242 #if defined (SIGTTIN)
1243 case TARGET_SIGNAL_TTIN: return SIGTTIN;
1245 #if defined (SIGTTOU)
1246 case TARGET_SIGNAL_TTOU: return SIGTTOU;
1248 #if defined (SIGVTALRM)
1249 case TARGET_SIGNAL_VTALRM: return SIGVTALRM;
1251 #if defined (SIGPROF)
1252 case TARGET_SIGNAL_PROF: return SIGPROF;
1254 #if defined (SIGXCPU)
1255 case TARGET_SIGNAL_XCPU: return SIGXCPU;
1257 #if defined (SIGXFSZ)
1258 case TARGET_SIGNAL_XFSZ: return SIGXFSZ;
1260 #if defined (SIGWIND)
1261 case TARGET_SIGNAL_WIND: return SIGWIND;
1263 #if defined (SIGPHONE)
1264 case TARGET_SIGNAL_PHONE: return SIGPHONE;
1266 #if defined (SIGLOST)
1267 case TARGET_SIGNAL_LOST: return SIGLOST;
1269 #if defined (SIGWAITING)
1270 case TARGET_SIGNAL_WAITING: return SIGWAITING;
1272 #if defined (SIGLWP)
1273 case TARGET_SIGNAL_LWP: return SIGLWP;
1275 #if defined (SIGDANGER)
1276 case TARGET_SIGNAL_DANGER: return SIGDANGER;
1278 #if defined (SIGGRANT)
1279 case TARGET_SIGNAL_GRANT: return SIGGRANT;
1281 #if defined (SIGRETRACT)
1282 case TARGET_SIGNAL_RETRACT: return SIGRETRACT;
1284 #if defined (SIGMSG)
1285 case TARGET_SIGNAL_MSG: return SIGMSG;
1287 #if defined (SIGSOUND)
1288 case TARGET_SIGNAL_SOUND: return SIGSOUND;
1290 #if defined (SIGSAK)
1291 case TARGET_SIGNAL_SAK: return SIGSAK;
1294 /* The user might be trying to do "signal SIGSAK" where this system
1295 doesn't have SIGSAK. */
1296 warning ("Signal %s does not exist on this system.\n",
1297 target_signal_to_name (oursig));
1302 /* Helper function for child_wait and the Lynx derivatives of child_wait.
1303 HOSTSTATUS is the waitstatus from wait() or the equivalent; store our
1304 translation of that in OURSTATUS. */
1306 store_waitstatus (ourstatus, hoststatus)
1307 struct target_waitstatus *ourstatus;
1310 #ifdef CHILD_SPECIAL_WAITSTATUS
1311 /* CHILD_SPECIAL_WAITSTATUS should return nonzero and set *OURSTATUS
1312 if it wants to deal with hoststatus. */
1313 if (CHILD_SPECIAL_WAITSTATUS (ourstatus, hoststatus))
1317 if (WIFEXITED (hoststatus))
1319 ourstatus->kind = TARGET_WAITKIND_EXITED;
1320 ourstatus->value.integer = WEXITSTATUS (hoststatus);
1322 else if (!WIFSTOPPED (hoststatus))
1324 ourstatus->kind = TARGET_WAITKIND_SIGNALLED;
1325 ourstatus->value.sig = target_signal_from_host (WTERMSIG (hoststatus));
1329 ourstatus->kind = TARGET_WAITKIND_STOPPED;
1330 ourstatus->value.sig = target_signal_from_host (WSTOPSIG (hoststatus));
1335 /* Returns zero to leave the inferior alone, one to interrupt it. */
1336 int (*target_activity_function) PARAMS ((void));
1337 int target_activity_fd;
1339 /* Convert a normal process ID to a string. Returns the string in a static
1343 normal_pid_to_str (pid)
1346 static char buf[30];
1348 sprintf (buf, "process %d", pid);
1353 static char targ_desc[] =
1354 "Names of targets and files being debugged.\n\
1355 Shows the entire stack of targets currently in use (including the exec-file,\n\
1356 core-file, and process, if any), as well as the symbol file name.";
1359 initialize_targets ()
1361 push_target (&dummy_target);
1363 add_info ("target", target_info, targ_desc);
1364 add_info ("files", target_info, targ_desc);
1366 if (!STREQ (signals[TARGET_SIGNAL_LAST].string, "TARGET_SIGNAL_MAGIC"))