1 /* Target-struct-independent code to start (run) and stop an inferior process.
2 Copyright 1986, 1987, 1988, 1989, 1991, 1992, 1993
3 Free Software Foundation, Inc.
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. */
21 /* Notes on the algorithm used in wait_for_inferior to determine if we
22 just did a subroutine call when stepping. We have the following
23 information at that point:
25 Current and previous (just before this step) pc.
26 Current and previous sp.
27 Current and previous start of current function.
29 If the starts of the functions don't match, then
31 a) We did a subroutine call.
33 In this case, the pc will be at the beginning of a function.
35 b) We did a subroutine return.
41 If we did a longjump, we were doing "nexti", since a next would
42 have attempted to skip over the assembly language routine in which
43 the longjmp is coded and would have simply been the equivalent of a
44 continue. I consider this ok behaivior. We'd like one of two
45 things to happen if we are doing a nexti through the longjmp()
46 routine: 1) It behaves as a stepi, or 2) It acts like a continue as
47 above. Given that this is a special case, and that anybody who
48 thinks that the concept of sub calls is meaningful in the context
49 of a longjmp, I'll take either one. Let's see what happens.
51 Acts like a subroutine return. I can handle that with no problem
54 -->So: If the current and previous beginnings of the current
55 function don't match, *and* the pc is at the start of a function,
56 we've done a subroutine call. If the pc is not at the start of a
57 function, we *didn't* do a subroutine call.
59 -->If the beginnings of the current and previous function do match,
62 a) We just did a recursive call.
64 In this case, we would be at the very beginning of a
65 function and 1) it will have a prologue (don't jump to
66 before prologue, or 2) (we assume here that it doesn't have
67 a prologue) there will have been a change in the stack
68 pointer over the last instruction. (Ie. it's got to put
69 the saved pc somewhere. The stack is the usual place. In
70 a recursive call a register is only an option if there's a
71 prologue to do something with it. This is even true on
72 register window machines; the prologue sets up the new
73 window. It might not be true on a register window machine
74 where the call instruction moved the register window
75 itself. Hmmm. One would hope that the stack pointer would
76 also change. If it doesn't, somebody send me a note, and
77 I'll work out a more general theory.
78 bug-gdb@prep.ai.mit.edu). This is true (albeit slipperly
79 so) on all machines I'm aware of:
81 m68k: Call changes stack pointer. Regular jumps don't.
83 sparc: Recursive calls must have frames and therefor,
86 vax: All calls have frames and hence change the
89 b) We did a return from a recursive call. I don't see that we
90 have either the ability or the need to distinguish this
91 from an ordinary jump. The stack frame will be printed
92 when and if the frame pointer changes; if we are in a
93 function without a frame pointer, it's the users own
96 c) We did a jump within a function. We assume that this is
97 true if we didn't do a recursive call.
99 d) We are in no-man's land ("I see no symbols here"). We
100 don't worry about this; it will make calls look like simple
101 jumps (and the stack frames will be printed when the frame
102 pointer moves), which is a reasonably non-violent response.
110 #include "inferior.h"
111 #include "breakpoint.h"
119 /* unistd.h is needed to #define X_OK */
123 #include <sys/file.h>
126 /* Prototypes for local functions */
129 signals_info PARAMS ((char *, int));
132 handle_command PARAMS ((char *, int));
135 sig_print_info PARAMS ((int));
138 sig_print_header PARAMS ((void));
141 resume_cleanups PARAMS ((int));
144 hook_stop_stub PARAMS ((char *));
146 /* GET_LONGJMP_TARGET returns the PC at which longjmp() will resume the
147 program. It needs to examine the jmp_buf argument and extract the PC
148 from it. The return value is non-zero on success, zero otherwise. */
149 #ifndef GET_LONGJMP_TARGET
150 #define GET_LONGJMP_TARGET(PC_ADDR) 0
154 /* Some machines have trampoline code that sits between function callers
155 and the actual functions themselves. If this machine doesn't have
156 such things, disable their processing. */
157 #ifndef SKIP_TRAMPOLINE_CODE
158 #define SKIP_TRAMPOLINE_CODE(pc) 0
161 /* For SVR4 shared libraries, each call goes through a small piece of
162 trampoline code in the ".init" section. IN_SOLIB_TRAMPOLINE evaluates
163 to nonzero if we are current stopped in one of these. */
164 #ifndef IN_SOLIB_TRAMPOLINE
165 #define IN_SOLIB_TRAMPOLINE(pc,name) 0
168 /* On some systems, the PC may be left pointing at an instruction that won't
169 actually be executed. This is usually indicated by a bit in the PSW. If
170 we find ourselves in such a state, then we step the target beyond the
171 nullified instruction before returning control to the user so as to avoid
174 #ifndef INSTRUCTION_NULLIFIED
175 #define INSTRUCTION_NULLIFIED 0
178 /* Tables of how to react to signals; the user sets them. */
180 static unsigned char *signal_stop;
181 static unsigned char *signal_print;
182 static unsigned char *signal_program;
184 #define SET_SIGS(nsigs,sigs,flags) \
186 int signum = (nsigs); \
187 while (signum-- > 0) \
188 if ((sigs)[signum]) \
189 (flags)[signum] = 1; \
192 #define UNSET_SIGS(nsigs,sigs,flags) \
194 int signum = (nsigs); \
195 while (signum-- > 0) \
196 if ((sigs)[signum]) \
197 (flags)[signum] = 0; \
201 /* Command list pointer for the "stop" placeholder. */
203 static struct cmd_list_element *stop_command;
205 /* Nonzero if breakpoints are now inserted in the inferior. */
207 static int breakpoints_inserted;
209 /* Function inferior was in as of last step command. */
211 static struct symbol *step_start_function;
213 /* Nonzero if we are expecting a trace trap and should proceed from it. */
215 static int trap_expected;
217 /* Nonzero if the next time we try to continue the inferior, it will
218 step one instruction and generate a spurious trace trap.
219 This is used to compensate for a bug in HP-UX. */
221 static int trap_expected_after_continue;
223 /* Nonzero means expecting a trace trap
224 and should stop the inferior and return silently when it happens. */
228 /* Nonzero means expecting a trap and caller will handle it themselves.
229 It is used after attach, due to attaching to a process;
230 when running in the shell before the child program has been exec'd;
231 and when running some kinds of remote stuff (FIXME?). */
233 int stop_soon_quietly;
235 /* Nonzero if proceed is being used for a "finish" command or a similar
236 situation when stop_registers should be saved. */
238 int proceed_to_finish;
240 /* Save register contents here when about to pop a stack dummy frame,
241 if-and-only-if proceed_to_finish is set.
242 Thus this contains the return value from the called function (assuming
243 values are returned in a register). */
245 char stop_registers[REGISTER_BYTES];
247 /* Nonzero if program stopped due to error trying to insert breakpoints. */
249 static int breakpoints_failed;
251 /* Nonzero after stop if current stack frame should be printed. */
253 static int stop_print_frame;
255 #ifdef NO_SINGLE_STEP
256 extern int one_stepped; /* From machine dependent code */
257 extern void single_step (); /* Same. */
258 #endif /* NO_SINGLE_STEP */
261 /* Things to clean up if we QUIT out of resume (). */
264 resume_cleanups (arg)
270 /* Resume the inferior, but allow a QUIT. This is useful if the user
271 wants to interrupt some lengthy single-stepping operation
272 (for child processes, the SIGINT goes to the inferior, and so
273 we get a SIGINT random_signal, but for remote debugging and perhaps
274 other targets, that's not true).
276 STEP nonzero if we should step (zero to continue instead).
277 SIG is the signal to give the inferior (zero for none). */
283 struct cleanup *old_cleanups = make_cleanup (resume_cleanups, 0);
286 #ifdef NO_SINGLE_STEP
288 single_step(sig); /* Do it the hard way, w/temp breakpoints */
289 step = 0; /* ...and don't ask hardware to do it. */
293 /* Handle any optimized stores to the inferior NOW... */
294 #ifdef DO_DEFERRED_STORES
298 target_resume (inferior_pid, step, sig);
299 discard_cleanups (old_cleanups);
303 /* Clear out all variables saying what to do when inferior is continued.
304 First do this, then set the ones you want, then call `proceed'. */
307 clear_proceed_status ()
310 step_range_start = 0;
312 step_frame_address = 0;
313 step_over_calls = -1;
315 stop_soon_quietly = 0;
316 proceed_to_finish = 0;
317 breakpoint_proceeded = 1; /* We're about to proceed... */
319 /* Discard any remaining commands or status from previous stop. */
320 bpstat_clear (&stop_bpstat);
323 /* Basic routine for continuing the program in various fashions.
325 ADDR is the address to resume at, or -1 for resume where stopped.
326 SIGGNAL is the signal to give it, or 0 for none,
327 or -1 for act according to how it stopped.
328 STEP is nonzero if should trap after one instruction.
329 -1 means return after that and print nothing.
330 You should probably set various step_... variables
331 before calling here, if you are stepping.
333 You should call clear_proceed_status before calling proceed. */
336 proceed (addr, siggnal, step)
344 step_start_function = find_pc_function (read_pc ());
348 if (addr == (CORE_ADDR)-1)
350 /* If there is a breakpoint at the address we will resume at,
351 step one instruction before inserting breakpoints
352 so that we do not stop right away. */
354 if (breakpoint_here_p (read_pc ()))
360 if (trap_expected_after_continue)
362 /* If (step == 0), a trap will be automatically generated after
363 the first instruction is executed. Force step one
364 instruction to clear this condition. This should not occur
365 if step is nonzero, but it is harmless in that case. */
367 trap_expected_after_continue = 0;
371 /* We will get a trace trap after one instruction.
372 Continue it automatically and insert breakpoints then. */
376 int temp = insert_breakpoints ();
379 print_sys_errmsg ("ptrace", temp);
380 error ("Cannot insert breakpoints.\n\
381 The same program may be running in another process.");
383 breakpoints_inserted = 1;
386 /* Install inferior's terminal modes. */
387 target_terminal_inferior ();
390 stop_signal = siggnal;
391 /* If this signal should not be seen by program,
392 give it zero. Used for debugging signals. */
393 else if (stop_signal < NSIG && !signal_program[stop_signal])
396 /* Resume inferior. */
397 resume (oneproc || step || bpstat_should_step (), stop_signal);
399 /* Wait for it to stop (if not standalone)
400 and in any case decode why it stopped, and act accordingly. */
402 wait_for_inferior ();
406 /* Record the pc and sp of the program the last time it stopped.
407 These are just used internally by wait_for_inferior, but need
408 to be preserved over calls to it and cleared when the inferior
410 static CORE_ADDR prev_pc;
411 static CORE_ADDR prev_sp;
412 static CORE_ADDR prev_func_start;
413 static char *prev_func_name;
416 /* Start remote-debugging of a machine over a serial link. */
421 init_wait_for_inferior ();
422 clear_proceed_status ();
423 stop_soon_quietly = 1;
425 wait_for_inferior ();
429 /* Initialize static vars when a new inferior begins. */
432 init_wait_for_inferior ()
434 /* These are meaningless until the first time through wait_for_inferior. */
438 prev_func_name = NULL;
440 trap_expected_after_continue = 0;
441 breakpoints_inserted = 0;
442 mark_breakpoints_out ();
443 stop_signal = 0; /* Don't confuse first call to proceed(). */
447 delete_breakpoint_current_contents (arg)
450 struct breakpoint **breakpointp = (struct breakpoint **)arg;
451 if (*breakpointp != NULL)
452 delete_breakpoint (*breakpointp);
455 /* Wait for control to return from inferior to debugger.
456 If inferior gets a signal, we may decide to start it up again
457 instead of returning. That is why there is a loop in this function.
458 When this function actually returns it means the inferior
459 should be left stopped and GDB should read more commands. */
464 struct cleanup *old_cleanups;
468 CORE_ADDR stop_sp = 0;
469 CORE_ADDR stop_func_start;
470 char *stop_func_name;
471 CORE_ADDR prologue_pc = 0, tmp;
472 struct symtab_and_line sal;
473 int remove_breakpoints_on_following_step = 0;
475 int handling_longjmp = 0; /* FIXME */
476 struct breakpoint *step_resume_breakpoint = NULL;
479 old_cleanups = make_cleanup (delete_breakpoint_current_contents,
480 &step_resume_breakpoint);
481 sal = find_pc_line(prev_pc, 0);
482 current_line = sal.line;
484 /* Are we stepping? */
485 #define CURRENTLY_STEPPING() ((step_resume_breakpoint == NULL \
486 && !handling_longjmp \
489 || bpstat_should_step ())
493 /* Clean up saved state that will become invalid. */
494 flush_cached_frames ();
495 registers_changed ();
497 pid = target_wait (&w);
499 #ifdef SIGTRAP_STOP_AFTER_LOAD
501 /* Somebody called load(2), and it gave us a "trap signal after load".
502 Ignore it gracefully. */
504 SIGTRAP_STOP_AFTER_LOAD (w);
507 /* See if the process still exists; clean up if it doesn't. */
510 target_terminal_ours (); /* Must do this before mourn anyway */
512 printf_filtered ("\nProgram exited with code 0%o.\n",
513 (unsigned int)WEXITSTATUS (w));
516 printf_filtered ("\nProgram exited normally.\n");
518 target_mourn_inferior ();
519 #ifdef NO_SINGLE_STEP
522 stop_print_frame = 0;
525 else if (!WIFSTOPPED (w))
529 stop_print_frame = 0;
530 stop_signal = WTERMSIG (w);
531 target_terminal_ours (); /* Must do this before mourn anyway */
532 target_kill (); /* kill mourns as well */
533 #ifdef PRINT_RANDOM_SIGNAL
534 printf_filtered ("\nProgram terminated: ");
535 PRINT_RANDOM_SIGNAL (stop_signal);
537 printf_filtered ("\nProgram terminated with signal ");
538 signame = strsigno (stop_signal);
540 printf_filtered ("%d", stop_signal);
542 /* Do we need to print the number in addition to the name? */
543 printf_filtered ("%s (%d)", signame, stop_signal);
544 printf_filtered (", %s\n", safe_strsignal (stop_signal));
546 printf_filtered ("The program no longer exists.\n");
548 #ifdef NO_SINGLE_STEP
554 if (pid != inferior_pid)
558 if (!in_thread_list (pid))
560 fprintf (stderr, "[New %s]\n", target_pid_to_str (pid));
563 target_resume (pid, 0, 0);
568 stop_signal = WSTOPSIG (w);
570 if (stop_signal >= NSIG || signal_print[stop_signal])
575 target_terminal_ours_for_output ();
576 printf_filtered ("\nProgram received signal ");
577 signame = strsigno (stop_signal);
579 printf_filtered ("%d", stop_signal);
581 printf_filtered ("%s (%d)", signame, stop_signal);
582 printf_filtered (", %s\n", safe_strsignal (stop_signal));
587 if (stop_signal >= NSIG || signal_stop[stop_signal])
590 printf_filtered ("[Switching to %s]\n", target_pid_to_str (pid));
592 flush_cached_frames ();
593 registers_changed ();
595 if (step_resume_breakpoint)
597 delete_breakpoint (step_resume_breakpoint);
598 step_resume_breakpoint = NULL;
602 prev_func_name = NULL;
603 step_range_start = 0;
605 step_frame_address = 0;
606 handling_longjmp = 0;
612 target_terminal_inferior ();
614 /* Clear the signal if it should not be passed. */
615 if (signal_program[stop_signal] == 0)
618 target_resume (pid, 0, stop_signal);
624 #ifdef NO_SINGLE_STEP
626 single_step (0); /* This actually cleans up the ss */
627 #endif /* NO_SINGLE_STEP */
629 /* If PC is pointing at a nullified instruction, then step beyond it so that
630 the user won't be confused when GDB appears to be ready to execute it. */
632 if (INSTRUCTION_NULLIFIED)
638 stop_pc = read_pc ();
639 set_current_frame ( create_new_frame (read_fp (), stop_pc));
641 stop_frame_address = FRAME_FP (get_current_frame ());
642 stop_sp = read_sp ();
645 /* Don't care about return value; stop_func_start and stop_func_name
646 will both be 0 if it doesn't work. */
647 find_pc_partial_function (stop_pc, &stop_func_name, &stop_func_start,
649 stop_func_start += FUNCTION_START_OFFSET;
651 bpstat_clear (&stop_bpstat);
653 stop_stack_dummy = 0;
654 stop_print_frame = 1;
656 stopped_by_random_signal = 0;
657 breakpoints_failed = 0;
659 /* Look at the cause of the stop, and decide what to do.
660 The alternatives are:
661 1) break; to really stop and return to the debugger,
662 2) drop through to start up again
663 (set another_trap to 1 to single step once)
664 3) set random_signal to 1, and the decision between 1 and 2
665 will be made according to the signal handling tables. */
667 stop_signal = WSTOPSIG (w);
669 /* First, distinguish signals caused by the debugger from signals
670 that have to do with the program's own actions.
671 Note that breakpoint insns may cause SIGTRAP or SIGILL
672 or SIGEMT, depending on the operating system version.
673 Here we detect when a SIGILL or SIGEMT is really a breakpoint
674 and change it to SIGTRAP. */
676 if (stop_signal == SIGTRAP
677 || (breakpoints_inserted &&
678 (stop_signal == SIGILL
680 || stop_signal == SIGEMT
683 || stop_soon_quietly)
685 if (stop_signal == SIGTRAP && stop_after_trap)
687 stop_print_frame = 0;
690 if (stop_soon_quietly)
693 /* Don't even think about breakpoints
694 if just proceeded over a breakpoint.
696 However, if we are trying to proceed over a breakpoint
697 and end up in sigtramp, then step_resume_breakpoint
698 will be set and we should check whether we've hit the
700 if (stop_signal == SIGTRAP && trap_expected
701 && step_resume_breakpoint == NULL)
702 bpstat_clear (&stop_bpstat);
705 /* See if there is a breakpoint at the current PC. */
706 stop_bpstat = bpstat_stop_status
707 (&stop_pc, stop_frame_address,
708 #if DECR_PC_AFTER_BREAK
709 /* Notice the case of stepping through a jump
710 that lands just after a breakpoint.
711 Don't confuse that with hitting the breakpoint.
712 What we check for is that 1) stepping is going on
713 and 2) the pc before the last insn does not match
714 the address of the breakpoint before the current pc. */
715 (prev_pc != stop_pc - DECR_PC_AFTER_BREAK
716 && CURRENTLY_STEPPING ())
717 #else /* DECR_PC_AFTER_BREAK zero */
719 #endif /* DECR_PC_AFTER_BREAK zero */
721 /* Following in case break condition called a
723 stop_print_frame = 1;
726 if (stop_signal == SIGTRAP)
728 = !(bpstat_explains_signal (stop_bpstat)
730 #ifndef CALL_DUMMY_BREAKPOINT_OFFSET
731 || PC_IN_CALL_DUMMY (stop_pc, stop_sp, stop_frame_address)
732 #endif /* No CALL_DUMMY_BREAKPOINT_OFFSET. */
733 || (step_range_end && step_resume_breakpoint == NULL));
737 = !(bpstat_explains_signal (stop_bpstat)
738 /* End of a stack dummy. Some systems (e.g. Sony
739 news) give another signal besides SIGTRAP,
740 so check here as well as above. */
741 #ifndef CALL_DUMMY_BREAKPOINT_OFFSET
742 || PC_IN_CALL_DUMMY (stop_pc, stop_sp, stop_frame_address)
743 #endif /* No CALL_DUMMY_BREAKPOINT_OFFSET. */
746 stop_signal = SIGTRAP;
752 /* For the program's own signals, act according to
753 the signal handling tables. */
757 /* Signal not for debugging purposes. */
760 stopped_by_random_signal = 1;
762 if (stop_signal >= NSIG
763 || signal_print[stop_signal])
767 target_terminal_ours_for_output ();
768 #ifdef PRINT_RANDOM_SIGNAL
769 PRINT_RANDOM_SIGNAL (stop_signal);
771 printf_filtered ("\nProgram received signal ");
772 signame = strsigno (stop_signal);
774 printf_filtered ("%d", stop_signal);
776 /* Do we need to print the number as well as the name? */
777 printf_filtered ("%s (%d)", signame, stop_signal);
778 printf_filtered (", %s\n", safe_strsignal (stop_signal));
779 #endif /* PRINT_RANDOM_SIGNAL */
782 if (stop_signal >= NSIG
783 || signal_stop[stop_signal])
785 /* If not going to stop, give terminal back
786 if we took it away. */
788 target_terminal_inferior ();
790 /* Clear the signal if it should not be passed. */
791 if (signal_program[stop_signal] == 0)
794 /* I'm not sure whether this needs to be check_sigtramp2 or
795 whether it could/should be keep_going. */
796 goto check_sigtramp2;
799 /* Handle cases caused by hitting a breakpoint. */
801 CORE_ADDR jmp_buf_pc;
802 struct bpstat_what what;
804 what = bpstat_what (stop_bpstat);
808 stop_stack_dummy = 1;
810 trap_expected_after_continue = 1;
814 switch (what.main_action)
816 case BPSTAT_WHAT_SET_LONGJMP_RESUME:
817 /* If we hit the breakpoint at longjmp, disable it for the
818 duration of this command. Then, install a temporary
819 breakpoint at the target of the jmp_buf. */
820 disable_longjmp_breakpoint();
821 remove_breakpoints ();
822 breakpoints_inserted = 0;
823 if (!GET_LONGJMP_TARGET(&jmp_buf_pc)) goto keep_going;
825 /* Need to blow away step-resume breakpoint, as it
826 interferes with us */
827 if (step_resume_breakpoint != NULL)
829 delete_breakpoint (step_resume_breakpoint);
830 step_resume_breakpoint = NULL;
831 what.step_resume = 0;
835 /* FIXME - Need to implement nested temporary breakpoints */
836 if (step_over_calls > 0)
837 set_longjmp_resume_breakpoint(jmp_buf_pc,
838 get_current_frame());
841 set_longjmp_resume_breakpoint(jmp_buf_pc, NULL);
842 handling_longjmp = 1; /* FIXME */
845 case BPSTAT_WHAT_CLEAR_LONGJMP_RESUME:
846 case BPSTAT_WHAT_CLEAR_LONGJMP_RESUME_SINGLE:
847 remove_breakpoints ();
848 breakpoints_inserted = 0;
850 /* FIXME - Need to implement nested temporary breakpoints */
852 && (stop_frame_address
853 INNER_THAN step_frame_address))
859 disable_longjmp_breakpoint();
860 handling_longjmp = 0; /* FIXME */
861 if (what.main_action == BPSTAT_WHAT_CLEAR_LONGJMP_RESUME)
863 /* else fallthrough */
865 case BPSTAT_WHAT_SINGLE:
866 if (breakpoints_inserted)
867 remove_breakpoints ();
868 breakpoints_inserted = 0;
870 /* Still need to check other stuff, at least the case
871 where we are stepping and step out of the right range. */
874 case BPSTAT_WHAT_STOP_NOISY:
875 stop_print_frame = 1;
876 /* We are about to nuke the step_resume_breakpoint via the
877 cleanup chain, so no need to worry about it here. */
880 case BPSTAT_WHAT_STOP_SILENT:
881 stop_print_frame = 0;
882 /* We are about to nuke the step_resume_breakpoint via the
883 cleanup chain, so no need to worry about it here. */
886 case BPSTAT_WHAT_KEEP_CHECKING:
890 if (what.step_resume)
892 delete_breakpoint (step_resume_breakpoint);
893 step_resume_breakpoint = NULL;
895 /* If were waiting for a trap, hitting the step_resume_break
896 doesn't count as getting it. */
902 /* We come here if we hit a breakpoint but should not
903 stop for it. Possibly we also were stepping
904 and should stop for that. So fall through and
905 test for stepping. But, if not stepping,
908 #ifndef CALL_DUMMY_BREAKPOINT_OFFSET
909 /* This is the old way of detecting the end of the stack dummy.
910 An architecture which defines CALL_DUMMY_BREAKPOINT_OFFSET gets
911 handled above. As soon as we can test it on all of them, all
912 architectures should define it. */
914 /* If this is the breakpoint at the end of a stack dummy,
915 just stop silently, unless the user was doing an si/ni, in which
916 case she'd better know what she's doing. */
918 if (PC_IN_CALL_DUMMY (stop_pc, stop_sp, stop_frame_address)
921 stop_print_frame = 0;
922 stop_stack_dummy = 1;
924 trap_expected_after_continue = 1;
928 #endif /* No CALL_DUMMY_BREAKPOINT_OFFSET. */
930 if (step_resume_breakpoint)
931 /* Having a step-resume breakpoint overrides anything
932 else having to do with stepping commands until
933 that breakpoint is reached. */
934 /* I suspect this could/should be keep_going, because if the
935 check_sigtramp2 check succeeds, then it will put in another
936 step_resume_breakpoint, and we aren't (yet) prepared to nest
938 goto check_sigtramp2;
940 if (step_range_end == 0)
941 /* Likewise if we aren't even stepping. */
942 /* I'm not sure whether this needs to be check_sigtramp2 or
943 whether it could/should be keep_going. */
944 goto check_sigtramp2;
946 /* If stepping through a line, keep going if still within it. */
947 if (stop_pc >= step_range_start
948 && stop_pc < step_range_end
949 /* The step range might include the start of the
950 function, so if we are at the start of the
951 step range and either the stack or frame pointers
952 just changed, we've stepped outside */
953 && !(stop_pc == step_range_start
954 && stop_frame_address
955 && (stop_sp INNER_THAN prev_sp
956 || stop_frame_address != step_frame_address)))
958 /* We might be doing a BPSTAT_WHAT_SINGLE and getting a signal.
959 So definately need to check for sigtramp here. */
960 goto check_sigtramp2;
963 /* We stepped out of the stepping range. See if that was due
964 to a subroutine call that we should proceed to the end of. */
966 /* Did we just take a signal? */
967 if (IN_SIGTRAMP (stop_pc, stop_func_name)
968 && !IN_SIGTRAMP (prev_pc, prev_func_name))
970 /* This code is needed at least in the following case:
971 The user types "next" and then a signal arrives (before
972 the "next" is done). */
973 /* We've just taken a signal; go until we are back to
974 the point where we took it and one more. */
976 struct symtab_and_line sr_sal;
979 sr_sal.symtab = NULL;
981 step_resume_breakpoint =
982 set_momentary_breakpoint (sr_sal, get_current_frame (),
984 if (breakpoints_inserted)
985 insert_breakpoints ();
988 /* If this is stepi or nexti, make sure that the stepping range
989 gets us past that instruction. */
990 if (step_range_end == 1)
991 /* FIXME: Does this run afoul of the code below which, if
992 we step into the middle of a line, resets the stepping
994 step_range_end = (step_range_start = prev_pc) + 1;
996 remove_breakpoints_on_following_step = 1;
1000 if (stop_func_start)
1002 /* Do this after the IN_SIGTRAMP check; it might give
1004 prologue_pc = stop_func_start;
1005 SKIP_PROLOGUE (prologue_pc);
1008 /* ==> See comments at top of file on this algorithm. <==*/
1010 if ((stop_pc == stop_func_start
1011 || IN_SOLIB_TRAMPOLINE (stop_pc, stop_func_name))
1012 && (stop_func_start != prev_func_start
1013 || prologue_pc != stop_func_start
1014 || stop_sp != prev_sp))
1016 /* It's a subroutine call. */
1018 if (step_over_calls == 0)
1020 /* I presume that step_over_calls is only 0 when we're
1021 supposed to be stepping at the assembly language level
1022 ("stepi"). Just stop. */
1027 if (step_over_calls > 0)
1028 /* We're doing a "next". */
1029 goto step_over_function;
1031 /* If we are in a function call trampoline (a stub between
1032 the calling routine and the real function), locate the real
1033 function. That's what tells us (a) whether we want to step
1034 into it at all, and (b) what prologue we want to run to
1035 the end of, if we do step into it. */
1036 tmp = SKIP_TRAMPOLINE_CODE (stop_pc);
1038 stop_func_start = tmp;
1040 /* If we have line number information for the function we
1041 are thinking of stepping into, step into it.
1043 If there are several symtabs at that PC (e.g. with include
1044 files), just want to know whether *any* of them have line
1045 numbers. find_pc_line handles this. */
1047 struct symtab_and_line tmp_sal;
1049 tmp_sal = find_pc_line (stop_func_start, 0);
1050 if (tmp_sal.line != 0)
1051 goto step_into_function;
1055 /* A subroutine call has happened. */
1057 /* Set a special breakpoint after the return */
1058 struct symtab_and_line sr_sal;
1061 (SAVED_PC_AFTER_CALL (get_current_frame ()));
1062 sr_sal.symtab = NULL;
1064 step_resume_breakpoint =
1065 set_momentary_breakpoint (sr_sal, get_current_frame (),
1067 if (breakpoints_inserted)
1068 insert_breakpoints ();
1073 /* Subroutine call with source code we should not step over.
1074 Do step to the first line of code in it. */
1075 SKIP_PROLOGUE (stop_func_start);
1076 sal = find_pc_line (stop_func_start, 0);
1077 /* Use the step_resume_break to step until
1078 the end of the prologue, even if that involves jumps
1079 (as it seems to on the vax under 4.2). */
1080 /* If the prologue ends in the middle of a source line,
1081 continue to the end of that source line.
1082 Otherwise, just go to end of prologue. */
1083 #ifdef PROLOGUE_FIRSTLINE_OVERLAP
1084 /* no, don't either. It skips any code that's
1085 legitimately on the first line. */
1087 if (sal.end && sal.pc != stop_func_start)
1088 stop_func_start = sal.end;
1091 if (stop_func_start == stop_pc)
1093 /* We are already there: stop now. */
1098 /* Put the step-breakpoint there and go until there. */
1100 struct symtab_and_line sr_sal;
1102 sr_sal.pc = stop_func_start;
1103 sr_sal.symtab = NULL;
1105 /* Do not specify what the fp should be when we stop
1106 since on some machines the prologue
1107 is where the new fp value is established. */
1108 step_resume_breakpoint =
1109 set_momentary_breakpoint (sr_sal, NULL, bp_step_resume);
1110 if (breakpoints_inserted)
1111 insert_breakpoints ();
1113 /* And make sure stepping stops right away then. */
1114 step_range_end = step_range_start;
1119 /* We've wandered out of the step range (but haven't done a
1120 subroutine call or return). (Is that true? I think we get
1121 here if we did a return and maybe a longjmp). */
1123 sal = find_pc_line(stop_pc, 0);
1125 if (step_range_end == 1)
1127 /* It is stepi or nexti. We always want to stop stepping after
1135 /* We have no line number information. That means to stop
1136 stepping (does this always happen right after one instruction,
1137 when we do "s" in a function with no line numbers,
1138 or can this happen as a result of a return or longjmp?). */
1143 if (stop_pc == sal.pc && current_line != sal.line)
1145 /* We are at the start of a different line. So stop. Note that
1146 we don't stop if we step into the middle of a different line.
1147 That is said to make things like for (;;) statements work
1153 /* We aren't done stepping.
1155 Optimize by setting the stepping range to the line.
1156 (We might not be in the original line, but if we entered a
1157 new line in mid-statement, we continue stepping. This makes
1158 things like for(;;) statements work better.) */
1159 step_range_start = sal.pc;
1160 step_range_end = sal.end;
1165 && IN_SIGTRAMP (stop_pc, stop_func_name)
1166 && !IN_SIGTRAMP (prev_pc, prev_func_name))
1168 /* What has happened here is that we have just stepped the inferior
1169 with a signal (because it is a signal which shouldn't make
1170 us stop), thus stepping into sigtramp.
1172 So we need to set a step_resume_break_address breakpoint
1173 and continue until we hit it, and then step. FIXME: This should
1174 be more enduring than a step_resume breakpoint; we should know
1175 that we will later need to keep going rather than re-hitting
1176 the breakpoint here (see testsuite/gdb.t06/signals.exp where
1177 it says "exceedingly difficult"). */
1178 struct symtab_and_line sr_sal;
1180 sr_sal.pc = prev_pc;
1181 sr_sal.symtab = NULL;
1183 step_resume_breakpoint =
1184 set_momentary_breakpoint (sr_sal, get_current_frame (),
1186 if (breakpoints_inserted)
1187 insert_breakpoints ();
1189 remove_breakpoints_on_following_step = 1;
1194 /* Come to this label when you need to resume the inferior.
1195 It's really much cleaner to do a goto than a maze of if-else
1198 /* Save the pc before execution, to compare with pc after stop. */
1199 prev_pc = read_pc (); /* Might have been DECR_AFTER_BREAK */
1200 prev_func_start = stop_func_start; /* Ok, since if DECR_PC_AFTER
1201 BREAK is defined, the
1202 original pc would not have
1203 been at the start of a
1205 prev_func_name = stop_func_name;
1208 /* If we did not do break;, it means we should keep
1209 running the inferior and not return to debugger. */
1211 if (trap_expected && stop_signal != SIGTRAP)
1213 /* We took a signal (which we are supposed to pass through to
1214 the inferior, else we'd have done a break above) and we
1215 haven't yet gotten our trap. Simply continue. */
1216 resume (CURRENTLY_STEPPING (), stop_signal);
1220 /* Either the trap was not expected, but we are continuing
1221 anyway (the user asked that this signal be passed to the
1224 The signal was SIGTRAP, e.g. it was our signal, but we
1225 decided we should resume from it.
1227 We're going to run this baby now!
1229 Insert breakpoints now, unless we are trying
1230 to one-proceed past a breakpoint. */
1231 /* If we've just finished a special step resume and we don't
1232 want to hit a breakpoint, pull em out. */
1233 if (step_resume_breakpoint == NULL &&
1234 remove_breakpoints_on_following_step)
1236 remove_breakpoints_on_following_step = 0;
1237 remove_breakpoints ();
1238 breakpoints_inserted = 0;
1240 else if (!breakpoints_inserted &&
1241 (step_resume_breakpoint != NULL || !another_trap))
1243 breakpoints_failed = insert_breakpoints ();
1244 if (breakpoints_failed)
1246 breakpoints_inserted = 1;
1249 trap_expected = another_trap;
1251 if (stop_signal == SIGTRAP)
1254 #ifdef SHIFT_INST_REGS
1255 /* I'm not sure when this following segment applies. I do know, now,
1256 that we shouldn't rewrite the regs when we were stopped by a
1257 random signal from the inferior process. */
1259 if (!bpstat_explains_signal (stop_bpstat)
1260 && (stop_signal != SIGCLD)
1261 && !stopped_by_random_signal)
1263 #endif /* SHIFT_INST_REGS */
1265 resume (CURRENTLY_STEPPING (), stop_signal);
1270 if (target_has_execution)
1272 /* Assuming the inferior still exists, set these up for next
1273 time, just like we did above if we didn't break out of the
1275 prev_pc = read_pc ();
1276 prev_func_start = stop_func_start;
1277 prev_func_name = stop_func_name;
1280 do_cleanups (old_cleanups);
1283 /* Here to return control to GDB when the inferior stops for real.
1284 Print appropriate messages, remove breakpoints, give terminal our modes.
1286 STOP_PRINT_FRAME nonzero means print the executing frame
1287 (pc, function, args, file, line number and line text).
1288 BREAKPOINTS_FAILED nonzero means stop was due to error
1289 attempting to insert breakpoints. */
1294 /* Make sure that the current_frame's pc is correct. This
1295 is a correction for setting up the frame info before doing
1296 DECR_PC_AFTER_BREAK */
1297 if (target_has_execution)
1298 (get_current_frame ())->pc = read_pc ();
1300 if (breakpoints_failed)
1302 target_terminal_ours_for_output ();
1303 print_sys_errmsg ("ptrace", breakpoints_failed);
1304 printf_filtered ("Stopped; cannot insert breakpoints.\n\
1305 The same program may be running in another process.\n");
1308 if (target_has_execution && breakpoints_inserted)
1309 if (remove_breakpoints ())
1311 target_terminal_ours_for_output ();
1312 printf_filtered ("Cannot remove breakpoints because program is no longer writable.\n\
1313 It might be running in another process.\n\
1314 Further execution is probably impossible.\n");
1317 breakpoints_inserted = 0;
1319 /* Delete the breakpoint we stopped at, if it wants to be deleted.
1320 Delete any breakpoint that is to be deleted at the next stop. */
1322 breakpoint_auto_delete (stop_bpstat);
1324 /* If an auto-display called a function and that got a signal,
1325 delete that auto-display to avoid an infinite recursion. */
1327 if (stopped_by_random_signal)
1328 disable_current_display ();
1330 if (step_multi && stop_step)
1333 target_terminal_ours ();
1335 /* Look up the hook_stop and run it if it exists. */
1337 if (stop_command->hook)
1339 catch_errors (hook_stop_stub, (char *)stop_command->hook,
1340 "Error while running hook_stop:\n", RETURN_MASK_ALL);
1343 if (!target_has_stack)
1346 /* Select innermost stack frame except on return from a stack dummy routine,
1347 or if the program has exited. Print it without a level number if
1348 we have changed functions or hit a breakpoint. Print source line
1350 if (!stop_stack_dummy)
1352 select_frame (get_current_frame (), 0);
1354 if (stop_print_frame)
1358 source_only = bpstat_print (stop_bpstat);
1359 source_only = source_only ||
1361 && step_frame_address == stop_frame_address
1362 && step_start_function == find_pc_function (stop_pc));
1364 print_stack_frame (selected_frame, -1, source_only? -1: 1);
1366 /* Display the auto-display expressions. */
1371 /* Save the function value return registers, if we care.
1372 We might be about to restore their previous contents. */
1373 if (proceed_to_finish)
1374 read_register_bytes (0, stop_registers, REGISTER_BYTES);
1376 if (stop_stack_dummy)
1378 /* Pop the empty frame that contains the stack dummy.
1379 POP_FRAME ends with a setting of the current frame, so we
1380 can use that next. */
1382 select_frame (get_current_frame (), 0);
1387 hook_stop_stub (cmd)
1390 execute_user_command ((struct cmd_list_element *)cmd, 0);
1394 int signal_stop_state (signo)
1397 return ((signo >= 0 && signo < NSIG) ? signal_stop[signo] : 0);
1400 int signal_print_state (signo)
1403 return ((signo >= 0 && signo < NSIG) ? signal_print[signo] : 0);
1406 int signal_pass_state (signo)
1409 return ((signo >= 0 && signo < NSIG) ? signal_program[signo] : 0);
1415 printf_filtered ("Signal\t\tStop\tPrint\tPass to program\tDescription\n");
1419 sig_print_info (number)
1424 if ((name = strsigno (number)) == NULL)
1425 printf_filtered ("%d\t\t", number);
1427 printf_filtered ("%s (%d)\t", name, number);
1428 printf_filtered ("%s\t", signal_stop[number] ? "Yes" : "No");
1429 printf_filtered ("%s\t", signal_print[number] ? "Yes" : "No");
1430 printf_filtered ("%s\t\t", signal_program[number] ? "Yes" : "No");
1431 printf_filtered ("%s\n", safe_strsignal (number));
1434 /* Specify how various signals in the inferior should be handled. */
1437 handle_command (args, from_tty)
1442 int digits, wordlen;
1443 int sigfirst, signum, siglast;
1446 unsigned char *sigs;
1447 struct cleanup *old_chain;
1451 error_no_arg ("signal to handle");
1454 /* Allocate and zero an array of flags for which signals to handle. */
1456 nsigs = signo_max () + 1;
1457 sigs = (unsigned char *) alloca (nsigs);
1458 memset (sigs, 0, nsigs);
1460 /* Break the command line up into args. */
1462 argv = buildargv (args);
1467 old_chain = make_cleanup (freeargv, (char *) argv);
1469 /* Walk through the args, looking for signal numbers, signal names, and
1470 actions. Signal numbers and signal names may be interspersed with
1471 actions, with the actions being performed for all signals cumulatively
1472 specified. Signal ranges can be specified as <LOW>-<HIGH>. */
1474 while (*argv != NULL)
1476 wordlen = strlen (*argv);
1477 for (digits = 0; isdigit ((*argv)[digits]); digits++) {;}
1479 sigfirst = siglast = -1;
1481 if (wordlen >= 1 && !strncmp (*argv, "all", wordlen))
1483 /* Apply action to all signals except those used by the
1484 debugger. Silently skip those. */
1487 siglast = nsigs - 1;
1489 else if (wordlen >= 1 && !strncmp (*argv, "stop", wordlen))
1491 SET_SIGS (nsigs, sigs, signal_stop);
1492 SET_SIGS (nsigs, sigs, signal_print);
1494 else if (wordlen >= 1 && !strncmp (*argv, "ignore", wordlen))
1496 UNSET_SIGS (nsigs, sigs, signal_program);
1498 else if (wordlen >= 2 && !strncmp (*argv, "print", wordlen))
1500 SET_SIGS (nsigs, sigs, signal_print);
1502 else if (wordlen >= 2 && !strncmp (*argv, "pass", wordlen))
1504 SET_SIGS (nsigs, sigs, signal_program);
1506 else if (wordlen >= 3 && !strncmp (*argv, "nostop", wordlen))
1508 UNSET_SIGS (nsigs, sigs, signal_stop);
1510 else if (wordlen >= 3 && !strncmp (*argv, "noignore", wordlen))
1512 SET_SIGS (nsigs, sigs, signal_program);
1514 else if (wordlen >= 4 && !strncmp (*argv, "noprint", wordlen))
1516 UNSET_SIGS (nsigs, sigs, signal_print);
1517 UNSET_SIGS (nsigs, sigs, signal_stop);
1519 else if (wordlen >= 4 && !strncmp (*argv, "nopass", wordlen))
1521 UNSET_SIGS (nsigs, sigs, signal_program);
1523 else if (digits > 0)
1525 sigfirst = siglast = atoi (*argv);
1526 if ((*argv)[digits] == '-')
1528 siglast = atoi ((*argv) + digits + 1);
1530 if (sigfirst > siglast)
1532 /* Bet he didn't figure we'd think of this case... */
1537 if (sigfirst < 0 || sigfirst >= nsigs)
1539 error ("Signal %d not in range 0-%d", sigfirst, nsigs - 1);
1541 if (siglast < 0 || siglast >= nsigs)
1543 error ("Signal %d not in range 0-%d", siglast, nsigs - 1);
1546 else if ((signum = strtosigno (*argv)) != 0)
1548 sigfirst = siglast = signum;
1552 /* Not a number and not a recognized flag word => complain. */
1553 error ("Unrecognized or ambiguous flag word: \"%s\".", *argv);
1556 /* If any signal numbers or symbol names were found, set flags for
1557 which signals to apply actions to. */
1559 for (signum = sigfirst; signum >= 0 && signum <= siglast; signum++)
1565 if (!allsigs && !sigs[signum])
1567 if (query ("%s is used by the debugger.\nAre you sure you want to change it? ", strsigno (signum)))
1573 printf ("Not confirmed, unchanged.\n");
1587 target_notice_signals();
1591 /* Show the results. */
1592 sig_print_header ();
1593 for (signum = 0; signum < nsigs; signum++)
1597 sig_print_info (signum);
1602 do_cleanups (old_chain);
1605 /* Print current contents of the tables set by the handle command. */
1608 signals_info (signum_exp, from_tty)
1613 sig_print_header ();
1617 /* First see if this is a symbol name. */
1618 i = strtosigno (signum_exp);
1621 /* Nope, maybe it's an address which evaluates to a signal
1623 i = parse_and_eval_address (signum_exp);
1624 if (i >= NSIG || i < 0)
1625 error ("Signal number out of bounds.");
1631 printf_filtered ("\n");
1632 for (i = 0; i < NSIG; i++)
1639 printf_filtered ("\nUse the \"handle\" command to change these tables.\n");
1642 /* Save all of the information associated with the inferior<==>gdb
1643 connection. INF_STATUS is a pointer to a "struct inferior_status"
1644 (defined in inferior.h). */
1647 save_inferior_status (inf_status, restore_stack_info)
1648 struct inferior_status *inf_status;
1649 int restore_stack_info;
1651 inf_status->stop_signal = stop_signal;
1652 inf_status->stop_pc = stop_pc;
1653 inf_status->stop_frame_address = stop_frame_address;
1654 inf_status->stop_step = stop_step;
1655 inf_status->stop_stack_dummy = stop_stack_dummy;
1656 inf_status->stopped_by_random_signal = stopped_by_random_signal;
1657 inf_status->trap_expected = trap_expected;
1658 inf_status->step_range_start = step_range_start;
1659 inf_status->step_range_end = step_range_end;
1660 inf_status->step_frame_address = step_frame_address;
1661 inf_status->step_over_calls = step_over_calls;
1662 inf_status->stop_after_trap = stop_after_trap;
1663 inf_status->stop_soon_quietly = stop_soon_quietly;
1664 /* Save original bpstat chain here; replace it with copy of chain.
1665 If caller's caller is walking the chain, they'll be happier if we
1666 hand them back the original chain when restore_i_s is called. */
1667 inf_status->stop_bpstat = stop_bpstat;
1668 stop_bpstat = bpstat_copy (stop_bpstat);
1669 inf_status->breakpoint_proceeded = breakpoint_proceeded;
1670 inf_status->restore_stack_info = restore_stack_info;
1671 inf_status->proceed_to_finish = proceed_to_finish;
1673 memcpy (inf_status->stop_registers, stop_registers, REGISTER_BYTES);
1675 read_register_bytes (0, inf_status->registers, REGISTER_BYTES);
1677 record_selected_frame (&(inf_status->selected_frame_address),
1678 &(inf_status->selected_level));
1682 struct restore_selected_frame_args {
1683 FRAME_ADDR frame_address;
1687 static int restore_selected_frame PARAMS ((char *));
1689 /* Restore the selected frame. args is really a struct
1690 restore_selected_frame_args * (declared as char * for catch_errors)
1691 telling us what frame to restore. Returns 1 for success, or 0 for
1692 failure. An error message will have been printed on error. */
1694 restore_selected_frame (args)
1697 struct restore_selected_frame_args *fr =
1698 (struct restore_selected_frame_args *) args;
1700 int level = fr->level;
1702 fid = find_relative_frame (get_current_frame (), &level);
1704 /* If inf_status->selected_frame_address is NULL, there was no
1705 previously selected frame. */
1707 FRAME_FP (fid) != fr->frame_address ||
1710 warning ("Unable to restore previously selected frame.\n");
1713 select_frame (fid, fr->level);
1718 restore_inferior_status (inf_status)
1719 struct inferior_status *inf_status;
1721 stop_signal = inf_status->stop_signal;
1722 stop_pc = inf_status->stop_pc;
1723 stop_frame_address = inf_status->stop_frame_address;
1724 stop_step = inf_status->stop_step;
1725 stop_stack_dummy = inf_status->stop_stack_dummy;
1726 stopped_by_random_signal = inf_status->stopped_by_random_signal;
1727 trap_expected = inf_status->trap_expected;
1728 step_range_start = inf_status->step_range_start;
1729 step_range_end = inf_status->step_range_end;
1730 step_frame_address = inf_status->step_frame_address;
1731 step_over_calls = inf_status->step_over_calls;
1732 stop_after_trap = inf_status->stop_after_trap;
1733 stop_soon_quietly = inf_status->stop_soon_quietly;
1734 bpstat_clear (&stop_bpstat);
1735 stop_bpstat = inf_status->stop_bpstat;
1736 breakpoint_proceeded = inf_status->breakpoint_proceeded;
1737 proceed_to_finish = inf_status->proceed_to_finish;
1739 memcpy (stop_registers, inf_status->stop_registers, REGISTER_BYTES);
1741 /* The inferior can be gone if the user types "print exit(0)"
1742 (and perhaps other times). */
1743 if (target_has_execution)
1744 write_register_bytes (0, inf_status->registers, REGISTER_BYTES);
1746 /* The inferior can be gone if the user types "print exit(0)"
1747 (and perhaps other times). */
1749 /* FIXME: If we are being called after stopping in a function which
1750 is called from gdb, we should not be trying to restore the
1751 selected frame; it just prints a spurious error message (The
1752 message is useful, however, in detecting bugs in gdb (like if gdb
1753 clobbers the stack)). In fact, should we be restoring the
1754 inferior status at all in that case? . */
1756 if (target_has_stack && inf_status->restore_stack_info)
1758 struct restore_selected_frame_args fr;
1759 fr.level = inf_status->selected_level;
1760 fr.frame_address = inf_status->selected_frame_address;
1761 /* The point of catch_errors is that if the stack is clobbered,
1762 walking the stack might encounter a garbage pointer and error()
1763 trying to dereference it. */
1764 if (catch_errors (restore_selected_frame, &fr,
1765 "Unable to restore previously selected frame:\n",
1766 RETURN_MASK_ERROR) == 0)
1767 /* Error in restoring the selected frame. Select the innermost
1769 select_frame (get_current_frame (), 0);
1775 _initialize_infrun ()
1778 register int numsigs;
1780 add_info ("signals", signals_info,
1781 "What debugger does when program gets various signals.\n\
1782 Specify a signal number as argument to print info on that signal only.");
1783 add_info_alias ("handle", "signals", 0);
1785 add_com ("handle", class_run, handle_command,
1786 "Specify how to handle a signal.\n\
1787 Args are signal numbers and actions to apply to those signals.\n\
1788 Signal numbers may be numeric (ex. 11) or symbolic (ex. SIGSEGV).\n\
1789 Numeric ranges may be specified with the form LOW-HIGH (ex. 14-21).\n\
1790 The special arg \"all\" is recognized to mean all signals except those\n\
1791 used by the debugger, typically SIGTRAP and SIGINT.\n\
1792 Recognized actions include \"stop\", \"nostop\", \"print\", \"noprint\",\n\
1793 \"pass\", \"nopass\", \"ignore\", or \"noignore\".\n\
1794 Stop means reenter debugger if this signal happens (implies print).\n\
1795 Print means print a message if this signal happens.\n\
1796 Pass means let program see this signal; otherwise program doesn't know.\n\
1797 Ignore is a synonym for nopass and noignore is a synonym for pass.\n\
1798 Pass and Stop may be combined.");
1800 stop_command = add_cmd ("stop", class_obscure, not_just_help_class_command,
1801 "There is no `stop' command, but you can set a hook on `stop'.\n\
1802 This allows you to set a list of commands to be run each time execution\n\
1803 of the program stops.", &cmdlist);
1805 numsigs = signo_max () + 1;
1806 signal_stop = (unsigned char *)
1807 xmalloc (sizeof (signal_stop[0]) * numsigs);
1808 signal_print = (unsigned char *)
1809 xmalloc (sizeof (signal_print[0]) * numsigs);
1810 signal_program = (unsigned char *)
1811 xmalloc (sizeof (signal_program[0]) * numsigs);
1812 for (i = 0; i < numsigs; i++)
1815 signal_print[i] = 1;
1816 signal_program[i] = 1;
1819 /* Signals caused by debugger's own actions
1820 should not be given to the program afterwards. */
1821 signal_program[SIGTRAP] = 0;
1822 signal_program[SIGINT] = 0;
1824 /* Signals that are not errors should not normally enter the debugger. */
1826 signal_stop[SIGALRM] = 0;
1827 signal_print[SIGALRM] = 0;
1828 #endif /* SIGALRM */
1830 signal_stop[SIGVTALRM] = 0;
1831 signal_print[SIGVTALRM] = 0;
1832 #endif /* SIGVTALRM */
1834 signal_stop[SIGPROF] = 0;
1835 signal_print[SIGPROF] = 0;
1836 #endif /* SIGPROF */
1838 signal_stop[SIGCHLD] = 0;
1839 signal_print[SIGCHLD] = 0;
1840 #endif /* SIGCHLD */
1842 signal_stop[SIGCLD] = 0;
1843 signal_print[SIGCLD] = 0;
1846 signal_stop[SIGIO] = 0;
1847 signal_print[SIGIO] = 0;
1850 signal_stop[SIGURG] = 0;
1851 signal_print[SIGURG] = 0;