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. */
27 #include "breakpoint.h"
36 /* unistd.h is needed to #define X_OK */
43 /* Prototypes for local functions */
46 signals_info PARAMS ((char *, int));
49 handle_command PARAMS ((char *, int));
52 sig_print_info PARAMS ((int));
55 sig_print_header PARAMS ((void));
58 resume_cleanups PARAMS ((int));
61 hook_stop_stub PARAMS ((char *));
63 /* GET_LONGJMP_TARGET returns the PC at which longjmp() will resume the
64 program. It needs to examine the jmp_buf argument and extract the PC
65 from it. The return value is non-zero on success, zero otherwise. */
66 #ifndef GET_LONGJMP_TARGET
67 #define GET_LONGJMP_TARGET(PC_ADDR) 0
71 /* Some machines have trampoline code that sits between function callers
72 and the actual functions themselves. If this machine doesn't have
73 such things, disable their processing. */
74 #ifndef SKIP_TRAMPOLINE_CODE
75 #define SKIP_TRAMPOLINE_CODE(pc) 0
78 /* For SVR4 shared libraries, each call goes through a small piece of
79 trampoline code in the ".init" section. IN_SOLIB_TRAMPOLINE evaluates
80 to nonzero if we are current stopped in one of these. */
81 #ifndef IN_SOLIB_TRAMPOLINE
82 #define IN_SOLIB_TRAMPOLINE(pc,name) 0
85 /* On some systems, the PC may be left pointing at an instruction that won't
86 actually be executed. This is usually indicated by a bit in the PSW. If
87 we find ourselves in such a state, then we step the target beyond the
88 nullified instruction before returning control to the user so as to avoid
91 #ifndef INSTRUCTION_NULLIFIED
92 #define INSTRUCTION_NULLIFIED 0
95 /* Tables of how to react to signals; the user sets them. */
97 static unsigned char *signal_stop;
98 static unsigned char *signal_print;
99 static unsigned char *signal_program;
101 #define SET_SIGS(nsigs,sigs,flags) \
103 int signum = (nsigs); \
104 while (signum-- > 0) \
105 if ((sigs)[signum]) \
106 (flags)[signum] = 1; \
109 #define UNSET_SIGS(nsigs,sigs,flags) \
111 int signum = (nsigs); \
112 while (signum-- > 0) \
113 if ((sigs)[signum]) \
114 (flags)[signum] = 0; \
118 /* Command list pointer for the "stop" placeholder. */
120 static struct cmd_list_element *stop_command;
122 /* Nonzero if breakpoints are now inserted in the inferior. */
124 static int breakpoints_inserted;
126 /* Function inferior was in as of last step command. */
128 static struct symbol *step_start_function;
130 /* Nonzero if we are expecting a trace trap and should proceed from it. */
132 static int trap_expected;
134 /* Nonzero if the next time we try to continue the inferior, it will
135 step one instruction and generate a spurious trace trap.
136 This is used to compensate for a bug in HP-UX. */
138 static int trap_expected_after_continue;
140 /* Nonzero means expecting a trace trap
141 and should stop the inferior and return silently when it happens. */
145 /* Nonzero means expecting a trap and caller will handle it themselves.
146 It is used after attach, due to attaching to a process;
147 when running in the shell before the child program has been exec'd;
148 and when running some kinds of remote stuff (FIXME?). */
150 int stop_soon_quietly;
152 /* Nonzero if proceed is being used for a "finish" command or a similar
153 situation when stop_registers should be saved. */
155 int proceed_to_finish;
157 /* Save register contents here when about to pop a stack dummy frame,
158 if-and-only-if proceed_to_finish is set.
159 Thus this contains the return value from the called function (assuming
160 values are returned in a register). */
162 char stop_registers[REGISTER_BYTES];
164 /* Nonzero if program stopped due to error trying to insert breakpoints. */
166 static int breakpoints_failed;
168 /* Nonzero after stop if current stack frame should be printed. */
170 static int stop_print_frame;
172 #ifdef NO_SINGLE_STEP
173 extern int one_stepped; /* From machine dependent code */
174 extern void single_step (); /* Same. */
175 #endif /* NO_SINGLE_STEP */
178 /* Things to clean up if we QUIT out of resume (). */
181 resume_cleanups (arg)
187 /* Resume the inferior, but allow a QUIT. This is useful if the user
188 wants to interrupt some lengthy single-stepping operation
189 (for child processes, the SIGINT goes to the inferior, and so
190 we get a SIGINT random_signal, but for remote debugging and perhaps
191 other targets, that's not true).
193 STEP nonzero if we should step (zero to continue instead).
194 SIG is the signal to give the inferior (zero for none). */
200 struct cleanup *old_cleanups = make_cleanup (resume_cleanups, 0);
203 #ifdef CANNOT_STEP_BREAKPOINT
204 /* Most targets can step a breakpoint instruction, thus executing it
205 normally. But if this one cannot, just continue and we will hit
207 if (step && breakpoints_inserted && breakpoint_here_p (read_pc ()))
211 #ifdef NO_SINGLE_STEP
213 single_step(sig); /* Do it the hard way, w/temp breakpoints */
214 step = 0; /* ...and don't ask hardware to do it. */
218 /* Handle any optimized stores to the inferior NOW... */
219 #ifdef DO_DEFERRED_STORES
223 /* Install inferior's terminal modes. */
224 target_terminal_inferior ();
226 target_resume (-1, step, sig);
227 discard_cleanups (old_cleanups);
231 /* Clear out all variables saying what to do when inferior is continued.
232 First do this, then set the ones you want, then call `proceed'. */
235 clear_proceed_status ()
238 step_range_start = 0;
240 step_frame_address = 0;
241 step_over_calls = -1;
243 stop_soon_quietly = 0;
244 proceed_to_finish = 0;
245 breakpoint_proceeded = 1; /* We're about to proceed... */
247 /* Discard any remaining commands or status from previous stop. */
248 bpstat_clear (&stop_bpstat);
251 /* Basic routine for continuing the program in various fashions.
253 ADDR is the address to resume at, or -1 for resume where stopped.
254 SIGGNAL is the signal to give it, or 0 for none,
255 or -1 for act according to how it stopped.
256 STEP is nonzero if should trap after one instruction.
257 -1 means return after that and print nothing.
258 You should probably set various step_... variables
259 before calling here, if you are stepping.
261 You should call clear_proceed_status before calling proceed. */
264 proceed (addr, siggnal, step)
272 step_start_function = find_pc_function (read_pc ());
276 if (addr == (CORE_ADDR)-1)
278 /* If there is a breakpoint at the address we will resume at,
279 step one instruction before inserting breakpoints
280 so that we do not stop right away. */
282 if (breakpoint_here_p (read_pc ()))
288 if (trap_expected_after_continue)
290 /* If (step == 0), a trap will be automatically generated after
291 the first instruction is executed. Force step one
292 instruction to clear this condition. This should not occur
293 if step is nonzero, but it is harmless in that case. */
295 trap_expected_after_continue = 0;
299 /* We will get a trace trap after one instruction.
300 Continue it automatically and insert breakpoints then. */
304 int temp = insert_breakpoints ();
307 print_sys_errmsg ("ptrace", temp);
308 error ("Cannot insert breakpoints.\n\
309 The same program may be running in another process.");
311 breakpoints_inserted = 1;
315 stop_signal = siggnal;
316 /* If this signal should not be seen by program,
317 give it zero. Used for debugging signals. */
318 else if (stop_signal < NSIG && !signal_program[stop_signal])
321 /* Resume inferior. */
322 resume (oneproc || step || bpstat_should_step (), stop_signal);
324 /* Wait for it to stop (if not standalone)
325 and in any case decode why it stopped, and act accordingly. */
327 wait_for_inferior ();
331 /* Record the pc and sp of the program the last time it stopped.
332 These are just used internally by wait_for_inferior, but need
333 to be preserved over calls to it and cleared when the inferior
335 static CORE_ADDR prev_pc;
336 static CORE_ADDR prev_sp;
337 static CORE_ADDR prev_func_start;
338 static char *prev_func_name;
341 /* Start remote-debugging of a machine over a serial link. */
346 init_wait_for_inferior ();
347 clear_proceed_status ();
348 stop_soon_quietly = 1;
350 wait_for_inferior ();
354 /* Initialize static vars when a new inferior begins. */
357 init_wait_for_inferior ()
359 /* These are meaningless until the first time through wait_for_inferior. */
363 prev_func_name = NULL;
365 trap_expected_after_continue = 0;
366 breakpoints_inserted = 0;
367 breakpoint_init_inferior ();
368 stop_signal = 0; /* Don't confuse first call to proceed(). */
372 delete_breakpoint_current_contents (arg)
375 struct breakpoint **breakpointp = (struct breakpoint **)arg;
376 if (*breakpointp != NULL)
377 delete_breakpoint (*breakpointp);
380 /* Wait for control to return from inferior to debugger.
381 If inferior gets a signal, we may decide to start it up again
382 instead of returning. That is why there is a loop in this function.
383 When this function actually returns it means the inferior
384 should be left stopped and GDB should read more commands. */
389 struct cleanup *old_cleanups;
393 CORE_ADDR stop_sp = 0;
394 CORE_ADDR stop_func_start;
395 char *stop_func_name;
396 CORE_ADDR prologue_pc = 0, tmp;
397 struct symtab_and_line sal;
398 int remove_breakpoints_on_following_step = 0;
400 int handling_longjmp = 0; /* FIXME */
401 struct breakpoint *step_resume_breakpoint = NULL;
404 old_cleanups = make_cleanup (delete_breakpoint_current_contents,
405 &step_resume_breakpoint);
406 sal = find_pc_line(prev_pc, 0);
407 current_line = sal.line;
409 /* Are we stepping? */
410 #define CURRENTLY_STEPPING() ((step_resume_breakpoint == NULL \
411 && !handling_longjmp \
414 || bpstat_should_step ())
418 /* Clean up saved state that will become invalid. */
419 flush_cached_frames ();
420 registers_changed ();
422 pid = target_wait (-1, &w);
424 #ifdef SIGTRAP_STOP_AFTER_LOAD
426 /* Somebody called load(2), and it gave us a "trap signal after load".
427 Ignore it gracefully. */
429 SIGTRAP_STOP_AFTER_LOAD (w);
432 /* See if the process still exists; clean up if it doesn't. */
435 target_terminal_ours (); /* Must do this before mourn anyway */
437 printf_filtered ("\nProgram exited with code 0%o.\n",
438 (unsigned int)WEXITSTATUS (w));
441 printf_filtered ("\nProgram exited normally.\n");
442 gdb_flush (gdb_stdout);
443 target_mourn_inferior ();
444 #ifdef NO_SINGLE_STEP
447 stop_print_frame = 0;
450 else if (!WIFSTOPPED (w))
454 stop_print_frame = 0;
455 stop_signal = WTERMSIG (w);
456 target_terminal_ours (); /* Must do this before mourn anyway */
457 target_kill (); /* kill mourns as well */
458 #ifdef PRINT_RANDOM_SIGNAL
459 printf_filtered ("\nProgram terminated: ");
460 PRINT_RANDOM_SIGNAL (stop_signal);
462 printf_filtered ("\nProgram terminated with signal ");
463 signame = strsigno (stop_signal);
465 printf_filtered ("%d", stop_signal);
467 /* Do we need to print the number in addition to the name? */
468 printf_filtered ("%s (%d)", signame, stop_signal);
469 printf_filtered (", %s\n", safe_strsignal (stop_signal));
471 printf_filtered ("The program no longer exists.\n");
472 gdb_flush (gdb_stdout);
473 #ifdef NO_SINGLE_STEP
479 stop_signal = WSTOPSIG (w);
481 if (pid != inferior_pid)
483 int save_pid = inferior_pid;
485 inferior_pid = pid; /* Setup for target memory/regs */
486 registers_changed ();
487 stop_pc = read_pc ();
488 inferior_pid = save_pid;
489 registers_changed ();
492 stop_pc = read_pc ();
494 if (stop_signal == SIGTRAP
495 && breakpoint_here_p (stop_pc - DECR_PC_AFTER_BREAK))
496 if (!breakpoint_thread_match (stop_pc - DECR_PC_AFTER_BREAK, pid))
498 /* Saw a breakpoint, but it was hit by the wrong thread. Just continue. */
499 if (breakpoints_inserted)
501 remove_breakpoints ();
502 target_resume (pid, 1, 0); /* Single step */
503 /* FIXME: What if a signal arrives instead of the single-step
505 target_wait (pid, NULL);
506 insert_breakpoints ();
508 target_resume (-1, 0, 0);
512 if (pid != inferior_pid)
515 if (pid != inferior_pid)
519 if (!in_thread_list (pid))
521 fprintf_unfiltered (gdb_stderr, "[New %s]\n", target_pid_to_str (pid));
524 target_resume (-1, 0, 0);
529 if (stop_signal >= NSIG || signal_print[stop_signal])
534 target_terminal_ours_for_output ();
535 printf_filtered ("\nProgram received signal ");
536 signame = strsigno (stop_signal);
538 printf_filtered ("%d", stop_signal);
540 printf_filtered ("%s (%d)", signame, stop_signal);
541 printf_filtered (", %s\n", safe_strsignal (stop_signal));
543 gdb_flush (gdb_stdout);
546 if (stop_signal == SIGTRAP
547 || stop_signal >= NSIG
548 || signal_stop[stop_signal])
552 printf_filtered ("[Switching to %s]\n", target_pid_to_str (pid));
554 flush_cached_frames ();
555 registers_changed ();
557 if (step_resume_breakpoint)
559 delete_breakpoint (step_resume_breakpoint);
560 step_resume_breakpoint = NULL;
564 prev_func_name = NULL;
565 step_range_start = 0;
567 step_frame_address = 0;
568 handling_longjmp = 0;
574 target_terminal_inferior ();
576 /* Clear the signal if it should not be passed. */
577 if (signal_program[stop_signal] == 0)
580 target_resume (-1, 0, stop_signal);
586 #ifdef NO_SINGLE_STEP
588 single_step (0); /* This actually cleans up the ss */
589 #endif /* NO_SINGLE_STEP */
591 /* If PC is pointing at a nullified instruction, then step beyond it so that
592 the user won't be confused when GDB appears to be ready to execute it. */
594 if (INSTRUCTION_NULLIFIED)
600 set_current_frame ( create_new_frame (read_fp (), stop_pc));
602 stop_frame_address = FRAME_FP (get_current_frame ());
603 stop_sp = read_sp ();
606 /* Don't care about return value; stop_func_start and stop_func_name
607 will both be 0 if it doesn't work. */
608 find_pc_partial_function (stop_pc, &stop_func_name, &stop_func_start,
610 stop_func_start += FUNCTION_START_OFFSET;
612 bpstat_clear (&stop_bpstat);
614 stop_stack_dummy = 0;
615 stop_print_frame = 1;
617 stopped_by_random_signal = 0;
618 breakpoints_failed = 0;
620 /* Look at the cause of the stop, and decide what to do.
621 The alternatives are:
622 1) break; to really stop and return to the debugger,
623 2) drop through to start up again
624 (set another_trap to 1 to single step once)
625 3) set random_signal to 1, and the decision between 1 and 2
626 will be made according to the signal handling tables. */
628 /* First, distinguish signals caused by the debugger from signals
629 that have to do with the program's own actions.
630 Note that breakpoint insns may cause SIGTRAP or SIGILL
631 or SIGEMT, depending on the operating system version.
632 Here we detect when a SIGILL or SIGEMT is really a breakpoint
633 and change it to SIGTRAP. */
635 if (stop_signal == SIGTRAP
636 || (breakpoints_inserted &&
637 (stop_signal == SIGILL
639 || stop_signal == SIGEMT
642 || stop_soon_quietly)
644 if (stop_signal == SIGTRAP && stop_after_trap)
646 stop_print_frame = 0;
649 if (stop_soon_quietly)
652 /* Don't even think about breakpoints
653 if just proceeded over a breakpoint.
655 However, if we are trying to proceed over a breakpoint
656 and end up in sigtramp, then step_resume_breakpoint
657 will be set and we should check whether we've hit the
659 if (stop_signal == SIGTRAP && trap_expected
660 && step_resume_breakpoint == NULL)
661 bpstat_clear (&stop_bpstat);
664 /* See if there is a breakpoint at the current PC. */
665 stop_bpstat = bpstat_stop_status
666 (&stop_pc, stop_frame_address,
667 #if DECR_PC_AFTER_BREAK
668 /* Notice the case of stepping through a jump
669 that lands just after a breakpoint.
670 Don't confuse that with hitting the breakpoint.
671 What we check for is that 1) stepping is going on
672 and 2) the pc before the last insn does not match
673 the address of the breakpoint before the current pc. */
674 (prev_pc != stop_pc - DECR_PC_AFTER_BREAK
675 && CURRENTLY_STEPPING ())
676 #else /* DECR_PC_AFTER_BREAK zero */
678 #endif /* DECR_PC_AFTER_BREAK zero */
680 /* Following in case break condition called a
682 stop_print_frame = 1;
685 if (stop_signal == SIGTRAP)
687 = !(bpstat_explains_signal (stop_bpstat)
689 #ifndef CALL_DUMMY_BREAKPOINT_OFFSET
690 || PC_IN_CALL_DUMMY (stop_pc, stop_sp, stop_frame_address)
691 #endif /* No CALL_DUMMY_BREAKPOINT_OFFSET. */
692 || (step_range_end && step_resume_breakpoint == NULL));
696 = !(bpstat_explains_signal (stop_bpstat)
697 /* End of a stack dummy. Some systems (e.g. Sony
698 news) give another signal besides SIGTRAP,
699 so check here as well as above. */
700 #ifndef CALL_DUMMY_BREAKPOINT_OFFSET
701 || PC_IN_CALL_DUMMY (stop_pc, stop_sp, stop_frame_address)
702 #endif /* No CALL_DUMMY_BREAKPOINT_OFFSET. */
705 stop_signal = SIGTRAP;
711 /* For the program's own signals, act according to
712 the signal handling tables. */
716 /* Signal not for debugging purposes. */
719 stopped_by_random_signal = 1;
721 if (stop_signal >= NSIG
722 || signal_print[stop_signal])
726 target_terminal_ours_for_output ();
727 #ifdef PRINT_RANDOM_SIGNAL
728 PRINT_RANDOM_SIGNAL (stop_signal);
730 printf_filtered ("\nProgram received signal ");
731 signame = strsigno (stop_signal);
733 printf_filtered ("%d", stop_signal);
735 /* Do we need to print the number as well as the name? */
736 printf_filtered ("%s (%d)", signame, stop_signal);
737 printf_filtered (", %s\n", safe_strsignal (stop_signal));
738 #endif /* PRINT_RANDOM_SIGNAL */
739 gdb_flush (gdb_stdout);
741 if (stop_signal >= NSIG
742 || signal_stop[stop_signal])
744 /* If not going to stop, give terminal back
745 if we took it away. */
747 target_terminal_inferior ();
749 /* Clear the signal if it should not be passed. */
750 if (signal_program[stop_signal] == 0)
753 /* I'm not sure whether this needs to be check_sigtramp2 or
754 whether it could/should be keep_going. */
755 goto check_sigtramp2;
758 /* Handle cases caused by hitting a breakpoint. */
760 CORE_ADDR jmp_buf_pc;
761 struct bpstat_what what;
763 what = bpstat_what (stop_bpstat);
767 stop_stack_dummy = 1;
769 trap_expected_after_continue = 1;
773 switch (what.main_action)
775 case BPSTAT_WHAT_SET_LONGJMP_RESUME:
776 /* If we hit the breakpoint at longjmp, disable it for the
777 duration of this command. Then, install a temporary
778 breakpoint at the target of the jmp_buf. */
779 disable_longjmp_breakpoint();
780 remove_breakpoints ();
781 breakpoints_inserted = 0;
782 if (!GET_LONGJMP_TARGET(&jmp_buf_pc)) goto keep_going;
784 /* Need to blow away step-resume breakpoint, as it
785 interferes with us */
786 if (step_resume_breakpoint != NULL)
788 delete_breakpoint (step_resume_breakpoint);
789 step_resume_breakpoint = NULL;
790 what.step_resume = 0;
794 /* FIXME - Need to implement nested temporary breakpoints */
795 if (step_over_calls > 0)
796 set_longjmp_resume_breakpoint(jmp_buf_pc,
797 get_current_frame());
800 set_longjmp_resume_breakpoint(jmp_buf_pc, NULL);
801 handling_longjmp = 1; /* FIXME */
804 case BPSTAT_WHAT_CLEAR_LONGJMP_RESUME:
805 case BPSTAT_WHAT_CLEAR_LONGJMP_RESUME_SINGLE:
806 remove_breakpoints ();
807 breakpoints_inserted = 0;
809 /* FIXME - Need to implement nested temporary breakpoints */
811 && (stop_frame_address
812 INNER_THAN step_frame_address))
818 disable_longjmp_breakpoint();
819 handling_longjmp = 0; /* FIXME */
820 if (what.main_action == BPSTAT_WHAT_CLEAR_LONGJMP_RESUME)
822 /* else fallthrough */
824 case BPSTAT_WHAT_SINGLE:
825 if (breakpoints_inserted)
826 remove_breakpoints ();
827 breakpoints_inserted = 0;
829 /* Still need to check other stuff, at least the case
830 where we are stepping and step out of the right range. */
833 case BPSTAT_WHAT_STOP_NOISY:
834 stop_print_frame = 1;
835 /* We are about to nuke the step_resume_breakpoint via the
836 cleanup chain, so no need to worry about it here. */
839 case BPSTAT_WHAT_STOP_SILENT:
840 stop_print_frame = 0;
841 /* We are about to nuke the step_resume_breakpoint via the
842 cleanup chain, so no need to worry about it here. */
845 case BPSTAT_WHAT_LAST:
846 /* Not a real code, but listed here to shut up gcc -Wall. */
848 case BPSTAT_WHAT_KEEP_CHECKING:
852 if (what.step_resume)
854 delete_breakpoint (step_resume_breakpoint);
855 step_resume_breakpoint = NULL;
857 /* If were waiting for a trap, hitting the step_resume_break
858 doesn't count as getting it. */
864 /* We come here if we hit a breakpoint but should not
865 stop for it. Possibly we also were stepping
866 and should stop for that. So fall through and
867 test for stepping. But, if not stepping,
870 #ifndef CALL_DUMMY_BREAKPOINT_OFFSET
871 /* This is the old way of detecting the end of the stack dummy.
872 An architecture which defines CALL_DUMMY_BREAKPOINT_OFFSET gets
873 handled above. As soon as we can test it on all of them, all
874 architectures should define it. */
876 /* If this is the breakpoint at the end of a stack dummy,
877 just stop silently, unless the user was doing an si/ni, in which
878 case she'd better know what she's doing. */
880 if (PC_IN_CALL_DUMMY (stop_pc, stop_sp, stop_frame_address)
883 stop_print_frame = 0;
884 stop_stack_dummy = 1;
886 trap_expected_after_continue = 1;
890 #endif /* No CALL_DUMMY_BREAKPOINT_OFFSET. */
892 if (step_resume_breakpoint)
893 /* Having a step-resume breakpoint overrides anything
894 else having to do with stepping commands until
895 that breakpoint is reached. */
896 /* I suspect this could/should be keep_going, because if the
897 check_sigtramp2 check succeeds, then it will put in another
898 step_resume_breakpoint, and we aren't (yet) prepared to nest
900 goto check_sigtramp2;
902 if (step_range_end == 0)
903 /* Likewise if we aren't even stepping. */
904 /* I'm not sure whether this needs to be check_sigtramp2 or
905 whether it could/should be keep_going. */
906 goto check_sigtramp2;
908 /* If stepping through a line, keep going if still within it. */
909 if (stop_pc >= step_range_start
910 && stop_pc < step_range_end
911 /* The step range might include the start of the
912 function, so if we are at the start of the
913 step range and either the stack or frame pointers
914 just changed, we've stepped outside */
915 && !(stop_pc == step_range_start
916 && stop_frame_address
917 && (stop_sp INNER_THAN prev_sp
918 || stop_frame_address != step_frame_address)))
920 /* We might be doing a BPSTAT_WHAT_SINGLE and getting a signal.
921 So definately need to check for sigtramp here. */
922 goto check_sigtramp2;
925 /* We stepped out of the stepping range. See if that was due
926 to a subroutine call that we should proceed to the end of. */
928 /* Did we just take a signal? */
929 if (IN_SIGTRAMP (stop_pc, stop_func_name)
930 && !IN_SIGTRAMP (prev_pc, prev_func_name))
932 /* This code is needed at least in the following case:
933 The user types "next" and then a signal arrives (before
934 the "next" is done). */
935 /* We've just taken a signal; go until we are back to
936 the point where we took it and one more. */
938 struct symtab_and_line sr_sal;
941 sr_sal.symtab = NULL;
943 step_resume_breakpoint =
944 set_momentary_breakpoint (sr_sal, get_current_frame (),
946 if (breakpoints_inserted)
947 insert_breakpoints ();
950 /* If this is stepi or nexti, make sure that the stepping range
951 gets us past that instruction. */
952 if (step_range_end == 1)
953 /* FIXME: Does this run afoul of the code below which, if
954 we step into the middle of a line, resets the stepping
956 step_range_end = (step_range_start = prev_pc) + 1;
958 remove_breakpoints_on_following_step = 1;
964 /* Do this after the IN_SIGTRAMP check; it might give
966 prologue_pc = stop_func_start;
967 SKIP_PROLOGUE (prologue_pc);
970 if ((/* Might be a non-recursive call. If the symbols are missing
971 enough that stop_func_start == prev_func_start even though
972 they are really two functions, we will treat some calls as
974 stop_func_start != prev_func_start
976 /* Might be a recursive call if either we have a prologue
977 or the call instruction itself saves the PC on the stack. */
978 || prologue_pc != stop_func_start
979 || stop_sp != prev_sp)
980 && (/* PC is completely out of bounds of any known objfiles. Treat
981 like a subroutine call. */
984 /* If we do a call, we will be at the start of a function. */
985 || stop_pc == stop_func_start
988 /* Not conservative enough for 4.11. FIXME: enable this
990 /* Except on the Alpha with -O (and perhaps other machines
991 with similar calling conventions), in which we might
992 call the address after the load of gp. Since prologues
993 don't contain calls, we can't return to within one, and
994 we don't jump back into them, so this check is OK. */
995 || stop_pc < prologue_pc
998 /* If we end up in certain places, it means we did a subroutine
999 call. I'm not completely sure this is necessary now that we
1000 have the above checks with stop_func_start (and now that
1001 find_pc_partial_function is pickier). */
1002 || IN_SOLIB_TRAMPOLINE (stop_pc, stop_func_name)
1004 /* If none of the above apply, it is a jump within a function,
1005 or a return from a subroutine. The other case is longjmp,
1006 which can no longer happen here as long as the
1007 handling_longjmp stuff is working. */
1010 /* It's a subroutine call. */
1012 if (step_over_calls == 0)
1014 /* I presume that step_over_calls is only 0 when we're
1015 supposed to be stepping at the assembly language level
1016 ("stepi"). Just stop. */
1021 if (step_over_calls > 0)
1022 /* We're doing a "next". */
1023 goto step_over_function;
1025 /* If we are in a function call trampoline (a stub between
1026 the calling routine and the real function), locate the real
1027 function. That's what tells us (a) whether we want to step
1028 into it at all, and (b) what prologue we want to run to
1029 the end of, if we do step into it. */
1030 tmp = SKIP_TRAMPOLINE_CODE (stop_pc);
1032 stop_func_start = tmp;
1034 /* If we have line number information for the function we
1035 are thinking of stepping into, step into it.
1037 If there are several symtabs at that PC (e.g. with include
1038 files), just want to know whether *any* of them have line
1039 numbers. find_pc_line handles this. */
1041 struct symtab_and_line tmp_sal;
1043 tmp_sal = find_pc_line (stop_func_start, 0);
1044 if (tmp_sal.line != 0)
1045 goto step_into_function;
1049 /* A subroutine call has happened. */
1051 /* Set a special breakpoint after the return */
1052 struct symtab_and_line sr_sal;
1055 (SAVED_PC_AFTER_CALL (get_current_frame ()));
1056 sr_sal.symtab = NULL;
1058 step_resume_breakpoint =
1059 set_momentary_breakpoint (sr_sal, get_current_frame (),
1061 if (breakpoints_inserted)
1062 insert_breakpoints ();
1067 /* Subroutine call with source code we should not step over.
1068 Do step to the first line of code in it. */
1069 SKIP_PROLOGUE (stop_func_start);
1070 sal = find_pc_line (stop_func_start, 0);
1071 /* Use the step_resume_break to step until
1072 the end of the prologue, even if that involves jumps
1073 (as it seems to on the vax under 4.2). */
1074 /* If the prologue ends in the middle of a source line,
1075 continue to the end of that source line.
1076 Otherwise, just go to end of prologue. */
1077 #ifdef PROLOGUE_FIRSTLINE_OVERLAP
1078 /* no, don't either. It skips any code that's
1079 legitimately on the first line. */
1081 if (sal.end && sal.pc != stop_func_start)
1082 stop_func_start = sal.end;
1085 if (stop_func_start == stop_pc)
1087 /* We are already there: stop now. */
1092 /* Put the step-breakpoint there and go until there. */
1094 struct symtab_and_line sr_sal;
1096 sr_sal.pc = stop_func_start;
1097 sr_sal.symtab = NULL;
1099 /* Do not specify what the fp should be when we stop
1100 since on some machines the prologue
1101 is where the new fp value is established. */
1102 step_resume_breakpoint =
1103 set_momentary_breakpoint (sr_sal, NULL, bp_step_resume);
1104 if (breakpoints_inserted)
1105 insert_breakpoints ();
1107 /* And make sure stepping stops right away then. */
1108 step_range_end = step_range_start;
1113 /* We've wandered out of the step range (but haven't done a
1114 subroutine call or return). (Is that true? I think we get
1115 here if we did a return and maybe a longjmp). */
1117 sal = find_pc_line(stop_pc, 0);
1119 if (step_range_end == 1)
1121 /* It is stepi or nexti. We always want to stop stepping after
1129 /* We have no line number information. That means to stop
1130 stepping (does this always happen right after one instruction,
1131 when we do "s" in a function with no line numbers,
1132 or can this happen as a result of a return or longjmp?). */
1137 if (stop_pc == sal.pc && current_line != sal.line)
1139 /* We are at the start of a different line. So stop. Note that
1140 we don't stop if we step into the middle of a different line.
1141 That is said to make things like for (;;) statements work
1147 /* We aren't done stepping.
1149 Optimize by setting the stepping range to the line.
1150 (We might not be in the original line, but if we entered a
1151 new line in mid-statement, we continue stepping. This makes
1152 things like for(;;) statements work better.) */
1153 step_range_start = sal.pc;
1154 step_range_end = sal.end;
1159 && IN_SIGTRAMP (stop_pc, stop_func_name)
1160 && !IN_SIGTRAMP (prev_pc, prev_func_name))
1162 /* What has happened here is that we have just stepped the inferior
1163 with a signal (because it is a signal which shouldn't make
1164 us stop), thus stepping into sigtramp.
1166 So we need to set a step_resume_break_address breakpoint
1167 and continue until we hit it, and then step. FIXME: This should
1168 be more enduring than a step_resume breakpoint; we should know
1169 that we will later need to keep going rather than re-hitting
1170 the breakpoint here (see testsuite/gdb.t06/signals.exp where
1171 it says "exceedingly difficult"). */
1172 struct symtab_and_line sr_sal;
1174 sr_sal.pc = prev_pc;
1175 sr_sal.symtab = NULL;
1177 step_resume_breakpoint =
1178 set_momentary_breakpoint (sr_sal, get_current_frame (),
1180 if (breakpoints_inserted)
1181 insert_breakpoints ();
1183 remove_breakpoints_on_following_step = 1;
1188 /* Come to this label when you need to resume the inferior.
1189 It's really much cleaner to do a goto than a maze of if-else
1192 /* Save the pc before execution, to compare with pc after stop. */
1193 prev_pc = read_pc (); /* Might have been DECR_AFTER_BREAK */
1194 prev_func_start = stop_func_start; /* Ok, since if DECR_PC_AFTER
1195 BREAK is defined, the
1196 original pc would not have
1197 been at the start of a
1199 prev_func_name = stop_func_name;
1202 /* If we did not do break;, it means we should keep
1203 running the inferior and not return to debugger. */
1205 if (trap_expected && stop_signal != SIGTRAP)
1207 /* We took a signal (which we are supposed to pass through to
1208 the inferior, else we'd have done a break above) and we
1209 haven't yet gotten our trap. Simply continue. */
1210 resume (CURRENTLY_STEPPING (), stop_signal);
1214 /* Either the trap was not expected, but we are continuing
1215 anyway (the user asked that this signal be passed to the
1218 The signal was SIGTRAP, e.g. it was our signal, but we
1219 decided we should resume from it.
1221 We're going to run this baby now!
1223 Insert breakpoints now, unless we are trying
1224 to one-proceed past a breakpoint. */
1225 /* If we've just finished a special step resume and we don't
1226 want to hit a breakpoint, pull em out. */
1227 if (step_resume_breakpoint == NULL &&
1228 remove_breakpoints_on_following_step)
1230 remove_breakpoints_on_following_step = 0;
1231 remove_breakpoints ();
1232 breakpoints_inserted = 0;
1234 else if (!breakpoints_inserted &&
1235 (step_resume_breakpoint != NULL || !another_trap))
1237 breakpoints_failed = insert_breakpoints ();
1238 if (breakpoints_failed)
1240 breakpoints_inserted = 1;
1243 trap_expected = another_trap;
1245 if (stop_signal == SIGTRAP)
1248 #ifdef SHIFT_INST_REGS
1249 /* I'm not sure when this following segment applies. I do know, now,
1250 that we shouldn't rewrite the regs when we were stopped by a
1251 random signal from the inferior process. */
1252 /* FIXME: Shouldn't this be based on the valid bit of the SXIP?
1253 (this is only used on the 88k). */
1255 if (!bpstat_explains_signal (stop_bpstat)
1256 && (stop_signal != SIGCLD)
1257 && !stopped_by_random_signal)
1259 #endif /* SHIFT_INST_REGS */
1261 resume (CURRENTLY_STEPPING (), stop_signal);
1266 if (target_has_execution)
1268 /* Assuming the inferior still exists, set these up for next
1269 time, just like we did above if we didn't break out of the
1271 prev_pc = read_pc ();
1272 prev_func_start = stop_func_start;
1273 prev_func_name = stop_func_name;
1276 do_cleanups (old_cleanups);
1279 /* Here to return control to GDB when the inferior stops for real.
1280 Print appropriate messages, remove breakpoints, give terminal our modes.
1282 STOP_PRINT_FRAME nonzero means print the executing frame
1283 (pc, function, args, file, line number and line text).
1284 BREAKPOINTS_FAILED nonzero means stop was due to error
1285 attempting to insert breakpoints. */
1290 /* Make sure that the current_frame's pc is correct. This
1291 is a correction for setting up the frame info before doing
1292 DECR_PC_AFTER_BREAK */
1293 if (target_has_execution && get_current_frame())
1294 (get_current_frame ())->pc = read_pc ();
1296 if (breakpoints_failed)
1298 target_terminal_ours_for_output ();
1299 print_sys_errmsg ("ptrace", breakpoints_failed);
1300 printf_filtered ("Stopped; cannot insert breakpoints.\n\
1301 The same program may be running in another process.\n");
1304 if (target_has_execution && breakpoints_inserted)
1305 if (remove_breakpoints ())
1307 target_terminal_ours_for_output ();
1308 printf_filtered ("Cannot remove breakpoints because program is no longer writable.\n\
1309 It might be running in another process.\n\
1310 Further execution is probably impossible.\n");
1313 breakpoints_inserted = 0;
1315 /* Delete the breakpoint we stopped at, if it wants to be deleted.
1316 Delete any breakpoint that is to be deleted at the next stop. */
1318 breakpoint_auto_delete (stop_bpstat);
1320 /* If an auto-display called a function and that got a signal,
1321 delete that auto-display to avoid an infinite recursion. */
1323 if (stopped_by_random_signal)
1324 disable_current_display ();
1326 if (step_multi && stop_step)
1329 target_terminal_ours ();
1331 /* Look up the hook_stop and run it if it exists. */
1333 if (stop_command->hook)
1335 catch_errors (hook_stop_stub, (char *)stop_command->hook,
1336 "Error while running hook_stop:\n", RETURN_MASK_ALL);
1339 if (!target_has_stack)
1342 /* Select innermost stack frame except on return from a stack dummy routine,
1343 or if the program has exited. Print it without a level number if
1344 we have changed functions or hit a breakpoint. Print source line
1346 if (!stop_stack_dummy)
1348 select_frame (get_current_frame (), 0);
1350 if (stop_print_frame)
1354 source_only = bpstat_print (stop_bpstat);
1355 source_only = source_only ||
1357 && step_frame_address == stop_frame_address
1358 && step_start_function == find_pc_function (stop_pc));
1360 print_stack_frame (selected_frame, -1, source_only? -1: 1);
1362 /* Display the auto-display expressions. */
1367 /* Save the function value return registers, if we care.
1368 We might be about to restore their previous contents. */
1369 if (proceed_to_finish)
1370 read_register_bytes (0, stop_registers, REGISTER_BYTES);
1372 if (stop_stack_dummy)
1374 /* Pop the empty frame that contains the stack dummy.
1375 POP_FRAME ends with a setting of the current frame, so we
1376 can use that next. */
1378 select_frame (get_current_frame (), 0);
1383 hook_stop_stub (cmd)
1386 execute_user_command ((struct cmd_list_element *)cmd, 0);
1390 int signal_stop_state (signo)
1393 return ((signo >= 0 && signo < NSIG) ? signal_stop[signo] : 0);
1396 int signal_print_state (signo)
1399 return ((signo >= 0 && signo < NSIG) ? signal_print[signo] : 0);
1402 int signal_pass_state (signo)
1405 return ((signo >= 0 && signo < NSIG) ? signal_program[signo] : 0);
1411 printf_filtered ("Signal\t\tStop\tPrint\tPass to program\tDescription\n");
1415 sig_print_info (number)
1420 if ((name = strsigno (number)) == NULL)
1421 printf_filtered ("%d\t\t", number);
1423 printf_filtered ("%s (%d)\t", name, number);
1424 printf_filtered ("%s\t", signal_stop[number] ? "Yes" : "No");
1425 printf_filtered ("%s\t", signal_print[number] ? "Yes" : "No");
1426 printf_filtered ("%s\t\t", signal_program[number] ? "Yes" : "No");
1427 printf_filtered ("%s\n", safe_strsignal (number));
1430 /* Specify how various signals in the inferior should be handled. */
1433 handle_command (args, from_tty)
1438 int digits, wordlen;
1439 int sigfirst, signum, siglast;
1442 unsigned char *sigs;
1443 struct cleanup *old_chain;
1447 error_no_arg ("signal to handle");
1450 /* Allocate and zero an array of flags for which signals to handle. */
1452 nsigs = signo_max () + 1;
1453 sigs = (unsigned char *) alloca (nsigs);
1454 memset (sigs, 0, nsigs);
1456 /* Break the command line up into args. */
1458 argv = buildargv (args);
1463 old_chain = make_cleanup (freeargv, (char *) argv);
1465 /* Walk through the args, looking for signal numbers, signal names, and
1466 actions. Signal numbers and signal names may be interspersed with
1467 actions, with the actions being performed for all signals cumulatively
1468 specified. Signal ranges can be specified as <LOW>-<HIGH>. */
1470 while (*argv != NULL)
1472 wordlen = strlen (*argv);
1473 for (digits = 0; isdigit ((*argv)[digits]); digits++) {;}
1475 sigfirst = siglast = -1;
1477 if (wordlen >= 1 && !strncmp (*argv, "all", wordlen))
1479 /* Apply action to all signals except those used by the
1480 debugger. Silently skip those. */
1483 siglast = nsigs - 1;
1485 else if (wordlen >= 1 && !strncmp (*argv, "stop", wordlen))
1487 SET_SIGS (nsigs, sigs, signal_stop);
1488 SET_SIGS (nsigs, sigs, signal_print);
1490 else if (wordlen >= 1 && !strncmp (*argv, "ignore", wordlen))
1492 UNSET_SIGS (nsigs, sigs, signal_program);
1494 else if (wordlen >= 2 && !strncmp (*argv, "print", wordlen))
1496 SET_SIGS (nsigs, sigs, signal_print);
1498 else if (wordlen >= 2 && !strncmp (*argv, "pass", wordlen))
1500 SET_SIGS (nsigs, sigs, signal_program);
1502 else if (wordlen >= 3 && !strncmp (*argv, "nostop", wordlen))
1504 UNSET_SIGS (nsigs, sigs, signal_stop);
1506 else if (wordlen >= 3 && !strncmp (*argv, "noignore", wordlen))
1508 SET_SIGS (nsigs, sigs, signal_program);
1510 else if (wordlen >= 4 && !strncmp (*argv, "noprint", wordlen))
1512 UNSET_SIGS (nsigs, sigs, signal_print);
1513 UNSET_SIGS (nsigs, sigs, signal_stop);
1515 else if (wordlen >= 4 && !strncmp (*argv, "nopass", wordlen))
1517 UNSET_SIGS (nsigs, sigs, signal_program);
1519 else if (digits > 0)
1521 sigfirst = siglast = atoi (*argv);
1522 if ((*argv)[digits] == '-')
1524 siglast = atoi ((*argv) + digits + 1);
1526 if (sigfirst > siglast)
1528 /* Bet he didn't figure we'd think of this case... */
1533 if (sigfirst < 0 || sigfirst >= nsigs)
1535 error ("Signal %d not in range 0-%d", sigfirst, nsigs - 1);
1537 if (siglast < 0 || siglast >= nsigs)
1539 error ("Signal %d not in range 0-%d", siglast, nsigs - 1);
1542 else if ((signum = strtosigno (*argv)) != 0)
1544 sigfirst = siglast = signum;
1548 /* Not a number and not a recognized flag word => complain. */
1549 error ("Unrecognized or ambiguous flag word: \"%s\".", *argv);
1552 /* If any signal numbers or symbol names were found, set flags for
1553 which signals to apply actions to. */
1555 for (signum = sigfirst; signum >= 0 && signum <= siglast; signum++)
1561 if (!allsigs && !sigs[signum])
1563 if (query ("%s is used by the debugger.\nAre you sure you want to change it? ", strsigno (signum)))
1569 printf_unfiltered ("Not confirmed, unchanged.\n");
1570 gdb_flush (gdb_stdout);
1583 target_notice_signals(inferior_pid);
1587 /* Show the results. */
1588 sig_print_header ();
1589 for (signum = 0; signum < nsigs; signum++)
1593 sig_print_info (signum);
1598 do_cleanups (old_chain);
1601 /* Print current contents of the tables set by the handle command. */
1604 signals_info (signum_exp, from_tty)
1609 sig_print_header ();
1613 /* First see if this is a symbol name. */
1614 i = strtosigno (signum_exp);
1617 /* Nope, maybe it's an address which evaluates to a signal
1619 i = parse_and_eval_address (signum_exp);
1620 if (i >= NSIG || i < 0)
1621 error ("Signal number out of bounds.");
1627 printf_filtered ("\n");
1628 for (i = 0; i < NSIG; i++)
1635 printf_filtered ("\nUse the \"handle\" command to change these tables.\n");
1638 /* Save all of the information associated with the inferior<==>gdb
1639 connection. INF_STATUS is a pointer to a "struct inferior_status"
1640 (defined in inferior.h). */
1643 save_inferior_status (inf_status, restore_stack_info)
1644 struct inferior_status *inf_status;
1645 int restore_stack_info;
1647 inf_status->stop_signal = stop_signal;
1648 inf_status->stop_pc = stop_pc;
1649 inf_status->stop_frame_address = stop_frame_address;
1650 inf_status->stop_step = stop_step;
1651 inf_status->stop_stack_dummy = stop_stack_dummy;
1652 inf_status->stopped_by_random_signal = stopped_by_random_signal;
1653 inf_status->trap_expected = trap_expected;
1654 inf_status->step_range_start = step_range_start;
1655 inf_status->step_range_end = step_range_end;
1656 inf_status->step_frame_address = step_frame_address;
1657 inf_status->step_over_calls = step_over_calls;
1658 inf_status->stop_after_trap = stop_after_trap;
1659 inf_status->stop_soon_quietly = stop_soon_quietly;
1660 /* Save original bpstat chain here; replace it with copy of chain.
1661 If caller's caller is walking the chain, they'll be happier if we
1662 hand them back the original chain when restore_i_s is called. */
1663 inf_status->stop_bpstat = stop_bpstat;
1664 stop_bpstat = bpstat_copy (stop_bpstat);
1665 inf_status->breakpoint_proceeded = breakpoint_proceeded;
1666 inf_status->restore_stack_info = restore_stack_info;
1667 inf_status->proceed_to_finish = proceed_to_finish;
1669 memcpy (inf_status->stop_registers, stop_registers, REGISTER_BYTES);
1671 read_register_bytes (0, inf_status->registers, REGISTER_BYTES);
1673 record_selected_frame (&(inf_status->selected_frame_address),
1674 &(inf_status->selected_level));
1678 struct restore_selected_frame_args {
1679 FRAME_ADDR frame_address;
1683 static int restore_selected_frame PARAMS ((char *));
1685 /* Restore the selected frame. args is really a struct
1686 restore_selected_frame_args * (declared as char * for catch_errors)
1687 telling us what frame to restore. Returns 1 for success, or 0 for
1688 failure. An error message will have been printed on error. */
1690 restore_selected_frame (args)
1693 struct restore_selected_frame_args *fr =
1694 (struct restore_selected_frame_args *) args;
1696 int level = fr->level;
1698 fid = find_relative_frame (get_current_frame (), &level);
1700 /* If inf_status->selected_frame_address is NULL, there was no
1701 previously selected frame. */
1703 FRAME_FP (fid) != fr->frame_address ||
1706 warning ("Unable to restore previously selected frame.\n");
1709 select_frame (fid, fr->level);
1714 restore_inferior_status (inf_status)
1715 struct inferior_status *inf_status;
1717 stop_signal = inf_status->stop_signal;
1718 stop_pc = inf_status->stop_pc;
1719 stop_frame_address = inf_status->stop_frame_address;
1720 stop_step = inf_status->stop_step;
1721 stop_stack_dummy = inf_status->stop_stack_dummy;
1722 stopped_by_random_signal = inf_status->stopped_by_random_signal;
1723 trap_expected = inf_status->trap_expected;
1724 step_range_start = inf_status->step_range_start;
1725 step_range_end = inf_status->step_range_end;
1726 step_frame_address = inf_status->step_frame_address;
1727 step_over_calls = inf_status->step_over_calls;
1728 stop_after_trap = inf_status->stop_after_trap;
1729 stop_soon_quietly = inf_status->stop_soon_quietly;
1730 bpstat_clear (&stop_bpstat);
1731 stop_bpstat = inf_status->stop_bpstat;
1732 breakpoint_proceeded = inf_status->breakpoint_proceeded;
1733 proceed_to_finish = inf_status->proceed_to_finish;
1735 memcpy (stop_registers, inf_status->stop_registers, REGISTER_BYTES);
1737 /* The inferior can be gone if the user types "print exit(0)"
1738 (and perhaps other times). */
1739 if (target_has_execution)
1740 write_register_bytes (0, inf_status->registers, REGISTER_BYTES);
1742 /* The inferior can be gone if the user types "print exit(0)"
1743 (and perhaps other times). */
1745 /* FIXME: If we are being called after stopping in a function which
1746 is called from gdb, we should not be trying to restore the
1747 selected frame; it just prints a spurious error message (The
1748 message is useful, however, in detecting bugs in gdb (like if gdb
1749 clobbers the stack)). In fact, should we be restoring the
1750 inferior status at all in that case? . */
1752 if (target_has_stack && inf_status->restore_stack_info)
1754 struct restore_selected_frame_args fr;
1755 fr.level = inf_status->selected_level;
1756 fr.frame_address = inf_status->selected_frame_address;
1757 /* The point of catch_errors is that if the stack is clobbered,
1758 walking the stack might encounter a garbage pointer and error()
1759 trying to dereference it. */
1760 if (catch_errors (restore_selected_frame, &fr,
1761 "Unable to restore previously selected frame:\n",
1762 RETURN_MASK_ERROR) == 0)
1763 /* Error in restoring the selected frame. Select the innermost
1765 select_frame (get_current_frame (), 0);
1771 _initialize_infrun ()
1774 register int numsigs;
1776 add_info ("signals", signals_info,
1777 "What debugger does when program gets various signals.\n\
1778 Specify a signal number as argument to print info on that signal only.");
1779 add_info_alias ("handle", "signals", 0);
1781 add_com ("handle", class_run, handle_command,
1782 "Specify how to handle a signal.\n\
1783 Args are signal numbers and actions to apply to those signals.\n\
1784 Signal numbers may be numeric (ex. 11) or symbolic (ex. SIGSEGV).\n\
1785 Numeric ranges may be specified with the form LOW-HIGH (ex. 14-21).\n\
1786 The special arg \"all\" is recognized to mean all signals except those\n\
1787 used by the debugger, typically SIGTRAP and SIGINT.\n\
1788 Recognized actions include \"stop\", \"nostop\", \"print\", \"noprint\",\n\
1789 \"pass\", \"nopass\", \"ignore\", or \"noignore\".\n\
1790 Stop means reenter debugger if this signal happens (implies print).\n\
1791 Print means print a message if this signal happens.\n\
1792 Pass means let program see this signal; otherwise program doesn't know.\n\
1793 Ignore is a synonym for nopass and noignore is a synonym for pass.\n\
1794 Pass and Stop may be combined.");
1796 stop_command = add_cmd ("stop", class_obscure, not_just_help_class_command,
1797 "There is no `stop' command, but you can set a hook on `stop'.\n\
1798 This allows you to set a list of commands to be run each time execution\n\
1799 of the program stops.", &cmdlist);
1801 numsigs = signo_max () + 1;
1802 signal_stop = (unsigned char *)
1803 xmalloc (sizeof (signal_stop[0]) * numsigs);
1804 signal_print = (unsigned char *)
1805 xmalloc (sizeof (signal_print[0]) * numsigs);
1806 signal_program = (unsigned char *)
1807 xmalloc (sizeof (signal_program[0]) * numsigs);
1808 for (i = 0; i < numsigs; i++)
1811 signal_print[i] = 1;
1812 signal_program[i] = 1;
1815 /* Signals caused by debugger's own actions
1816 should not be given to the program afterwards. */
1817 signal_program[SIGTRAP] = 0;
1818 signal_program[SIGINT] = 0;
1820 /* Signals that are not errors should not normally enter the debugger. */
1822 signal_stop[SIGALRM] = 0;
1823 signal_print[SIGALRM] = 0;
1824 #endif /* SIGALRM */
1826 signal_stop[SIGVTALRM] = 0;
1827 signal_print[SIGVTALRM] = 0;
1828 #endif /* SIGVTALRM */
1830 signal_stop[SIGPROF] = 0;
1831 signal_print[SIGPROF] = 0;
1832 #endif /* SIGPROF */
1834 signal_stop[SIGCHLD] = 0;
1835 signal_print[SIGCHLD] = 0;
1836 #endif /* SIGCHLD */
1838 signal_stop[SIGCLD] = 0;
1839 signal_print[SIGCLD] = 0;
1842 signal_stop[SIGIO] = 0;
1843 signal_print[SIGIO] = 0;
1846 signal_stop[SIGURG] = 0;
1847 signal_print[SIGURG] = 0;