1 /* Target-struct-independent code to start (run) and stop an inferior process.
2 Copyright 1986, 1987, 1988, 1989, 1991, 1992 Free Software Foundation, Inc.
4 This file is part of GDB.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
20 /* Notes on the algorithm used in wait_for_inferior to determine if we
21 just did a subroutine call when stepping. We have the following
22 information at that point:
24 Current and previous (just before this step) pc.
25 Current and previous sp.
26 Current and previous start of current function.
28 If the starts of the functions don't match, then
30 a) We did a subroutine call.
32 In this case, the pc will be at the beginning of a function.
34 b) We did a subroutine return.
40 If we did a longjump, we were doing "nexti", since a next would
41 have attempted to skip over the assembly language routine in which
42 the longjmp is coded and would have simply been the equivalent of a
43 continue. I consider this ok behaivior. We'd like one of two
44 things to happen if we are doing a nexti through the longjmp()
45 routine: 1) It behaves as a stepi, or 2) It acts like a continue as
46 above. Given that this is a special case, and that anybody who
47 thinks that the concept of sub calls is meaningful in the context
48 of a longjmp, I'll take either one. Let's see what happens.
50 Acts like a subroutine return. I can handle that with no problem
53 -->So: If the current and previous beginnings of the current
54 function don't match, *and* the pc is at the start of a function,
55 we've done a subroutine call. If the pc is not at the start of a
56 function, we *didn't* do a subroutine call.
58 -->If the beginnings of the current and previous function do match,
61 a) We just did a recursive call.
63 In this case, we would be at the very beginning of a
64 function and 1) it will have a prologue (don't jump to
65 before prologue, or 2) (we assume here that it doesn't have
66 a prologue) there will have been a change in the stack
67 pointer over the last instruction. (Ie. it's got to put
68 the saved pc somewhere. The stack is the usual place. In
69 a recursive call a register is only an option if there's a
70 prologue to do something with it. This is even true on
71 register window machines; the prologue sets up the new
72 window. It might not be true on a register window machine
73 where the call instruction moved the register window
74 itself. Hmmm. One would hope that the stack pointer would
75 also change. If it doesn't, somebody send me a note, and
76 I'll work out a more general theory.
78 so) on all machines I'm aware of:
80 m68k: Call changes stack pointer. Regular jumps don't.
82 sparc: Recursive calls must have frames and therefor,
85 vax: All calls have frames and hence change the
88 b) We did a return from a recursive call. I don't see that we
89 have either the ability or the need to distinguish this
90 from an ordinary jump. The stack frame will be printed
91 when and if the frame pointer changes; if we are in a
92 function without a frame pointer, it's the users own
95 c) We did a jump within a function. We assume that this is
96 true if we didn't do a recursive call.
98 d) We are in no-man's land ("I see no symbols here"). We
99 don't worry about this; it will make calls look like simple
100 jumps (and the stack frames will be printed when the frame
101 pointer moves), which is a reasonably non-violent response.
109 #include "inferior.h"
110 #include "breakpoint.h"
118 /* unistd.h is needed to #define X_OK */
122 #include <sys/file.h>
125 /* Prototypes for local functions */
128 signals_info PARAMS ((char *, int));
131 handle_command PARAMS ((char *, int));
134 sig_print_info PARAMS ((int));
137 sig_print_header PARAMS ((void));
140 remove_step_breakpoint PARAMS ((void));
143 insert_step_breakpoint PARAMS ((void));
146 resume_cleanups PARAMS ((int));
149 hook_stop_stub PARAMS ((char *));
151 /* Sigtramp is a routine that the kernel calls (which then calls the
152 signal handler). On most machines it is a library routine that
153 is linked into the executable.
155 This macro, given a program counter value and the name of the
156 function in which that PC resides (which can be null if the
157 name is not known), returns nonzero if the PC and name show
158 that we are in sigtramp.
160 On most machines just see if the name is sigtramp (and if we have
161 no name, assume we are not in sigtramp). */
162 #if !defined (IN_SIGTRAMP)
163 #define IN_SIGTRAMP(pc, name) \
164 (name && !strcmp ("_sigtramp", name))
167 /* GET_LONGJMP_TARGET returns the PC at which longjmp() will resume the
168 program. It needs to examine the jmp_buf argument and extract the PC
169 from it. The return value is non-zero on success, zero otherwise. */
170 #ifndef GET_LONGJMP_TARGET
171 #define GET_LONGJMP_TARGET(PC_ADDR) 0
175 /* Some machines have trampoline code that sits between function callers
176 and the actual functions themselves. If this machine doesn't have
177 such things, disable their processing. */
178 #ifndef SKIP_TRAMPOLINE_CODE
179 #define SKIP_TRAMPOLINE_CODE(pc) 0
182 /* For SVR4 shared libraries, each call goes through a small piece of
183 trampoline code in the ".init" section. IN_SOLIB_TRAMPOLINE evaluates
184 to nonzero if we are current stopped in one of these. */
185 #ifndef IN_SOLIB_TRAMPOLINE
186 #define IN_SOLIB_TRAMPOLINE(pc,name) 0
189 /* On some systems, the PC may be left pointing at an instruction that won't
190 actually be executed. This is usually indicated by a bit in the PSW. If
191 we find ourselves in such a state, then we step the target beyond the
192 nullified instruction before returning control to the user so as to avoid
195 #ifndef INSTRUCTION_NULLIFIED
196 #define INSTRUCTION_NULLIFIED 0
201 int safe_to_init_tdesc_context = 0;
202 extern dc_dcontext_t current_context;
205 /* Tables of how to react to signals; the user sets them. */
207 static unsigned char *signal_stop;
208 static unsigned char *signal_print;
209 static unsigned char *signal_program;
211 #define SET_SIGS(nsigs,sigs,flags) \
213 int signum = (nsigs); \
214 while (signum-- > 0) \
215 if ((sigs)[signum]) \
216 (flags)[signum] = 1; \
219 #define UNSET_SIGS(nsigs,sigs,flags) \
221 int signum = (nsigs); \
222 while (signum-- > 0) \
223 if ((sigs)[signum]) \
224 (flags)[signum] = 0; \
228 /* Command list pointer for the "stop" placeholder. */
230 static struct cmd_list_element *stop_command;
232 /* Nonzero if breakpoints are now inserted in the inferior. */
234 static int breakpoints_inserted;
236 /* Function inferior was in as of last step command. */
238 static struct symbol *step_start_function;
240 /* Nonzero => address for special breakpoint for resuming stepping. */
242 static CORE_ADDR step_resume_break_address;
244 /* Pointer to orig contents of the byte where the special breakpoint is. */
246 static char step_resume_break_shadow[BREAKPOINT_MAX];
248 /* Nonzero means the special breakpoint is a duplicate
249 so it has not itself been inserted. */
251 static int step_resume_break_duplicate;
253 /* Nonzero if we are expecting a trace trap and should proceed from it. */
255 static int trap_expected;
257 /* Nonzero if the next time we try to continue the inferior, it will
258 step one instruction and generate a spurious trace trap.
259 This is used to compensate for a bug in HP-UX. */
261 static int trap_expected_after_continue;
263 /* Nonzero means expecting a trace trap
264 and should stop the inferior and return silently when it happens. */
268 /* Nonzero means expecting a trap and caller will handle it themselves.
269 It is used after attach, due to attaching to a process;
270 when running in the shell before the child program has been exec'd;
271 and when running some kinds of remote stuff (FIXME?). */
273 int stop_soon_quietly;
275 /* Nonzero if pc has been changed by the debugger
276 since the inferior stopped. */
280 /* Nonzero if proceed is being used for a "finish" command or a similar
281 situation when stop_registers should be saved. */
283 int proceed_to_finish;
285 /* Save register contents here when about to pop a stack dummy frame,
286 if-and-only-if proceed_to_finish is set.
287 Thus this contains the return value from the called function (assuming
288 values are returned in a register). */
290 char stop_registers[REGISTER_BYTES];
292 /* Nonzero if program stopped due to error trying to insert breakpoints. */
294 static int breakpoints_failed;
296 /* Nonzero after stop if current stack frame should be printed. */
298 static int stop_print_frame;
300 #ifdef NO_SINGLE_STEP
301 extern int one_stepped; /* From machine dependent code */
302 extern void single_step (); /* Same. */
303 #endif /* NO_SINGLE_STEP */
306 /* Things to clean up if we QUIT out of resume (). */
309 resume_cleanups (arg)
315 /* Resume the inferior, but allow a QUIT. This is useful if the user
316 wants to interrupt some lengthy single-stepping operation
317 (for child processes, the SIGINT goes to the inferior, and so
318 we get a SIGINT random_signal, but for remote debugging and perhaps
319 other targets, that's not true).
321 STEP nonzero if we should step (zero to continue instead).
322 SIG is the signal to give the inferior (zero for none). */
328 struct cleanup *old_cleanups = make_cleanup (resume_cleanups, 0);
331 #ifdef NO_SINGLE_STEP
333 single_step(sig); /* Do it the hard way, w/temp breakpoints */
334 step = 0; /* ...and don't ask hardware to do it. */
338 /* Handle any optimized stores to the inferior NOW... */
339 #ifdef DO_DEFERRED_STORES
343 target_resume (step, sig);
344 discard_cleanups (old_cleanups);
348 /* Clear out all variables saying what to do when inferior is continued.
349 First do this, then set the ones you want, then call `proceed'. */
352 clear_proceed_status ()
355 step_range_start = 0;
357 step_frame_address = 0;
358 step_over_calls = -1;
359 step_resume_break_address = 0;
361 stop_soon_quietly = 0;
362 proceed_to_finish = 0;
363 breakpoint_proceeded = 1; /* We're about to proceed... */
365 /* Discard any remaining commands or status from previous stop. */
366 bpstat_clear (&stop_bpstat);
369 /* Basic routine for continuing the program in various fashions.
371 ADDR is the address to resume at, or -1 for resume where stopped.
372 SIGGNAL is the signal to give it, or 0 for none,
373 or -1 for act according to how it stopped.
374 STEP is nonzero if should trap after one instruction.
375 -1 means return after that and print nothing.
376 You should probably set various step_... variables
377 before calling here, if you are stepping.
379 You should call clear_proceed_status before calling proceed. */
382 proceed (addr, siggnal, step)
390 step_start_function = find_pc_function (read_pc ());
394 if (addr == (CORE_ADDR)-1)
396 /* If there is a breakpoint at the address we will resume at,
397 step one instruction before inserting breakpoints
398 so that we do not stop right away. */
400 if (!pc_changed && breakpoint_here_p (read_pc ()))
405 write_register (PC_REGNUM, addr);
407 write_register (NPC_REGNUM, addr + 4);
409 write_register (NNPC_REGNUM, addr + 8);
414 if (trap_expected_after_continue)
416 /* If (step == 0), a trap will be automatically generated after
417 the first instruction is executed. Force step one
418 instruction to clear this condition. This should not occur
419 if step is nonzero, but it is harmless in that case. */
421 trap_expected_after_continue = 0;
425 /* We will get a trace trap after one instruction.
426 Continue it automatically and insert breakpoints then. */
430 int temp = insert_breakpoints ();
433 print_sys_errmsg ("ptrace", temp);
434 error ("Cannot insert breakpoints.\n\
435 The same program may be running in another process.");
437 breakpoints_inserted = 1;
440 /* Install inferior's terminal modes. */
441 target_terminal_inferior ();
444 stop_signal = siggnal;
445 /* If this signal should not be seen by program,
446 give it zero. Used for debugging signals. */
447 else if (stop_signal < NSIG && !signal_program[stop_signal])
450 /* Resume inferior. */
451 resume (oneproc || step || bpstat_should_step (), stop_signal);
453 /* Wait for it to stop (if not standalone)
454 and in any case decode why it stopped, and act accordingly. */
456 wait_for_inferior ();
460 /* Record the pc and sp of the program the last time it stopped.
461 These are just used internally by wait_for_inferior, but need
462 to be preserved over calls to it and cleared when the inferior
464 static CORE_ADDR prev_pc;
465 static CORE_ADDR prev_sp;
466 static CORE_ADDR prev_func_start;
467 static char *prev_func_name;
470 /* Start remote-debugging of a machine over a serial link. */
475 init_wait_for_inferior ();
476 clear_proceed_status ();
477 stop_soon_quietly = 1;
479 wait_for_inferior ();
483 /* Initialize static vars when a new inferior begins. */
486 init_wait_for_inferior ()
488 /* These are meaningless until the first time through wait_for_inferior. */
492 prev_func_name = NULL;
494 trap_expected_after_continue = 0;
495 breakpoints_inserted = 0;
496 mark_breakpoints_out ();
497 stop_signal = 0; /* Don't confuse first call to proceed(). */
502 /* Wait for control to return from inferior to debugger.
503 If inferior gets a signal, we may decide to start it up again
504 instead of returning. That is why there is a loop in this function.
505 When this function actually returns it means the inferior
506 should be left stopped and GDB should read more commands. */
515 CORE_ADDR stop_func_start;
516 char *stop_func_name;
517 CORE_ADDR prologue_pc, tmp;
518 int stop_step_resume_break;
519 struct symtab_and_line sal;
520 int remove_breakpoints_on_following_step = 0;
522 int handling_longjmp = 0; /* FIXME */
523 struct symtab *symtab;
525 sal = find_pc_line(prev_pc, 0);
526 current_line = sal.line;
530 /* Clean up saved state that will become invalid. */
532 flush_cached_frames ();
533 registers_changed ();
537 #ifdef SIGTRAP_STOP_AFTER_LOAD
539 /* Somebody called load(2), and it gave us a "trap signal after load".
540 Ignore it gracefully. */
542 SIGTRAP_STOP_AFTER_LOAD (w);
545 /* See if the process still exists; clean up if it doesn't. */
548 target_terminal_ours (); /* Must do this before mourn anyway */
550 printf_filtered ("\nProgram exited with code 0%o.\n",
551 (unsigned int)WEXITSTATUS (w));
554 printf_filtered ("\nProgram exited normally.\n");
556 target_mourn_inferior ();
557 #ifdef NO_SINGLE_STEP
560 stop_print_frame = 0;
563 else if (!WIFSTOPPED (w))
565 stop_print_frame = 0;
566 stop_signal = WTERMSIG (w);
567 target_terminal_ours (); /* Must do this before mourn anyway */
568 target_kill (); /* kill mourns as well */
569 #ifdef PRINT_RANDOM_SIGNAL
570 printf_filtered ("\nProgram terminated: ");
571 PRINT_RANDOM_SIGNAL (stop_signal);
573 printf_filtered ("\nProgram terminated with signal %d, %s\n",
574 stop_signal, safe_strsignal (stop_signal));
576 printf_filtered ("The inferior process no longer exists.\n");
578 #ifdef NO_SINGLE_STEP
584 #ifdef NO_SINGLE_STEP
586 single_step (0); /* This actually cleans up the ss */
587 #endif /* NO_SINGLE_STEP */
589 /* If PC is pointing at a nullified instruction, then step beyond it so that
590 the user won't be confused when GDB appears to be ready to execute it. */
592 if (INSTRUCTION_NULLIFIED)
598 stop_pc = read_pc ();
599 set_current_frame ( create_new_frame (read_register (FP_REGNUM),
602 stop_frame_address = FRAME_FP (get_current_frame ());
603 stop_sp = read_register (SP_REGNUM);
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);
609 stop_func_start += FUNCTION_START_OFFSET;
611 bpstat_clear (&stop_bpstat);
613 stop_stack_dummy = 0;
614 stop_print_frame = 1;
615 stop_step_resume_break = 0;
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 stop_signal = WSTOPSIG (w);
630 /* First, distinguish signals caused by the debugger from signals
631 that have to do with the program's own actions.
632 Note that breakpoint insns may cause SIGTRAP or SIGILL
633 or SIGEMT, depending on the operating system version.
634 Here we detect when a SIGILL or SIGEMT is really a breakpoint
635 and change it to SIGTRAP. */
637 if (stop_signal == SIGTRAP
638 || (breakpoints_inserted &&
639 (stop_signal == SIGILL
641 || stop_signal == SIGEMT
644 || stop_soon_quietly)
646 if (stop_signal == SIGTRAP && stop_after_trap)
648 stop_print_frame = 0;
651 if (stop_soon_quietly)
654 /* Don't even think about breakpoints
655 if just proceeded over a breakpoint.
657 However, if we are trying to proceed over a breakpoint
658 and end up in sigtramp, then step_resume_break_address
659 will be set and we should check whether we've hit the
661 if (stop_signal == SIGTRAP && trap_expected
662 && step_resume_break_address == 0)
663 bpstat_clear (&stop_bpstat);
666 /* See if there is a breakpoint at the current PC. */
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 if (prev_pc == stop_pc - DECR_PC_AFTER_BREAK
676 || step_resume_break_address
677 || handling_longjmp /* FIXME */)
678 #endif /* DECR_PC_AFTER_BREAK not zero */
680 /* See if we stopped at the special breakpoint for
681 stepping over a subroutine call. If both are zero,
682 this wasn't the reason for the stop. */
683 if (step_resume_break_address
684 && stop_pc - DECR_PC_AFTER_BREAK
685 == step_resume_break_address)
687 stop_step_resume_break = 1;
688 if (DECR_PC_AFTER_BREAK)
690 stop_pc -= DECR_PC_AFTER_BREAK;
691 write_register (PC_REGNUM, stop_pc);
698 bpstat_stop_status (&stop_pc, stop_frame_address);
699 /* Following in case break condition called a
701 stop_print_frame = 1;
706 if (stop_signal == SIGTRAP)
708 = !(bpstat_explains_signal (stop_bpstat)
710 || stop_step_resume_break
711 || PC_IN_CALL_DUMMY (stop_pc, stop_sp, stop_frame_address)
712 || (step_range_end && !step_resume_break_address));
716 = !(bpstat_explains_signal (stop_bpstat)
717 || stop_step_resume_break
718 /* End of a stack dummy. Some systems (e.g. Sony
719 news) give another signal besides SIGTRAP,
720 so check here as well as above. */
721 || PC_IN_CALL_DUMMY (stop_pc, stop_sp, stop_frame_address)
724 stop_signal = SIGTRAP;
730 /* For the program's own signals, act according to
731 the signal handling tables. */
735 /* Signal not for debugging purposes. */
738 stopped_by_random_signal = 1;
740 if (stop_signal >= NSIG
741 || signal_print[stop_signal])
744 target_terminal_ours_for_output ();
745 #ifdef PRINT_RANDOM_SIGNAL
746 PRINT_RANDOM_SIGNAL (stop_signal);
748 printf_filtered ("\nProgram received signal %d, %s\n",
749 stop_signal, safe_strsignal (stop_signal));
750 #endif /* PRINT_RANDOM_SIGNAL */
753 if (stop_signal >= NSIG
754 || signal_stop[stop_signal])
756 /* If not going to stop, give terminal back
757 if we took it away. */
759 target_terminal_inferior ();
761 /* Note that virtually all the code below does `if !random_signal'.
762 Perhaps this code should end with a goto or continue. At least
763 one (now fixed) bug was caused by this -- a !random_signal was
764 missing in one of the tests below. */
767 /* Handle cases caused by hitting a breakpoint. */
770 if (bpstat_explains_signal (stop_bpstat))
772 CORE_ADDR jmp_buf_pc;
774 switch (stop_bpstat->breakpoint_at->type) /* FIXME */
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. */
780 disable_longjmp_breakpoint();
781 remove_breakpoints ();
782 breakpoints_inserted = 0;
783 if (!GET_LONGJMP_TARGET(&jmp_buf_pc)) goto keep_going;
785 /* Need to blow away step-resume breakpoint, as it
786 interferes with us */
787 remove_step_breakpoint ();
788 step_resume_break_address = 0;
789 stop_step_resume_break = 0;
791 #if 0 /* FIXME - Need to implement nested temporary breakpoints */
792 if (step_over_calls > 0)
793 set_longjmp_resume_breakpoint(jmp_buf_pc,
794 get_current_frame());
797 set_longjmp_resume_breakpoint(jmp_buf_pc, NULL);
798 handling_longjmp = 1; /* FIXME */
801 case bp_longjmp_resume:
802 remove_breakpoints ();
803 breakpoints_inserted = 0;
804 #if 0 /* FIXME - Need to implement nested temporary breakpoints */
806 && (stop_frame_address
807 INNER_THAN step_frame_address))
813 disable_longjmp_breakpoint();
814 handling_longjmp = 0; /* FIXME */
818 fprintf(stderr, "Unknown breakpoint type %d\n",
819 stop_bpstat->breakpoint_at->type);
824 /* Does a breakpoint want us to stop? */
825 if (bpstat_stop (stop_bpstat))
827 stop_print_frame = bpstat_should_print (stop_bpstat);
830 /* Otherwise, must remove breakpoints and single-step
831 to get us past the one we hit. */
834 remove_breakpoints ();
835 remove_step_breakpoint ();
836 breakpoints_inserted = 0;
842 else if (stop_step_resume_break)
844 /* But if we have hit the step-resumption breakpoint,
845 remove it. It has done its job getting us here.
846 The sp test is to make sure that we don't get hung
847 up in recursive calls in functions without frame
848 pointers. If the stack pointer isn't outside of
849 where the breakpoint was set (within a routine to be
850 stepped over), we're in the middle of a recursive
851 call. Not true for reg window machines (sparc)
852 because the must change frames to call things and
853 the stack pointer doesn't have to change if it
854 the bp was set in a routine without a frame (pc can
855 be stored in some other window).
857 The removal of the sp test is to allow calls to
858 alloca. Nasty things were happening. Oh, well,
859 gdb can only handle one level deep of lack of
863 Disable test for step_frame_address match so that we always stop even if the
864 frames don't match. Reason: if we hit the step_resume_breakpoint, there is
865 no way to temporarily disable it so that we can step past it. If we leave
866 the breakpoint in, then we loop forever repeatedly hitting, but never
867 getting past the breakpoint. This change keeps nexting over recursive
868 function calls from hanging gdb.
871 if (* step_frame_address == 0
872 || (step_frame_address == stop_frame_address))
875 remove_step_breakpoint ();
876 step_resume_break_address = 0;
878 /* If were waiting for a trap, hitting the step_resume_break
879 doesn't count as getting it. */
885 /* We come here if we hit a breakpoint but should not
886 stop for it. Possibly we also were stepping
887 and should stop for that. So fall through and
888 test for stepping. But, if not stepping,
891 /* If this is the breakpoint at the end of a stack dummy,
892 just stop silently. */
894 && PC_IN_CALL_DUMMY (stop_pc, stop_sp, stop_frame_address))
896 stop_print_frame = 0;
897 stop_stack_dummy = 1;
899 trap_expected_after_continue = 1;
904 if (step_resume_break_address)
905 /* Having a step-resume breakpoint overrides anything
906 else having to do with stepping commands until
907 that breakpoint is reached. */
909 /* If stepping through a line, keep going if still within it. */
910 else if (!random_signal
912 && stop_pc >= step_range_start
913 && stop_pc < step_range_end
914 /* The step range might include the start of the
915 function, so if we are at the start of the
916 step range and either the stack or frame pointers
917 just changed, we've stepped outside */
918 && !(stop_pc == step_range_start
919 && stop_frame_address
920 && (stop_sp INNER_THAN prev_sp
921 || stop_frame_address != step_frame_address)))
926 /* We stepped out of the stepping range. See if that was due
927 to a subroutine call that we should proceed to the end of. */
928 else if (!random_signal && step_range_end)
932 prologue_pc = stop_func_start;
933 SKIP_PROLOGUE (prologue_pc);
936 /* Did we just take a signal? */
937 if (IN_SIGTRAMP (stop_pc, stop_func_name)
938 && !IN_SIGTRAMP (prev_pc, prev_func_name))
940 /* This code is needed at least in the following case:
941 The user types "next" and then a signal arrives (before
942 the "next" is done). */
943 /* We've just taken a signal; go until we are back to
944 the point where we took it and one more. */
945 step_resume_break_address = prev_pc;
946 step_resume_break_duplicate =
947 breakpoint_here_p (step_resume_break_address);
948 if (breakpoints_inserted)
949 insert_step_breakpoint ();
950 /* Make sure that the stepping range gets us past
952 if (step_range_end == 1)
953 step_range_end = (step_range_start = prev_pc) + 1;
954 remove_breakpoints_on_following_step = 1;
958 /* ==> See comments at top of file on this algorithm. <==*/
960 if ((stop_pc == stop_func_start
961 || IN_SOLIB_TRAMPOLINE (stop_pc, stop_func_name))
962 && (stop_func_start != prev_func_start
963 || prologue_pc != stop_func_start
964 || stop_sp != prev_sp))
966 /* It's a subroutine call.
967 (0) If we are not stepping over any calls ("stepi"), we
969 (1) If we're doing a "next", we want to continue through
970 the call ("step over the call").
971 (2) If we are in a function-call trampoline (a stub between
972 the calling routine and the real function), locate
973 the real function and change stop_func_start.
974 (3) If we're doing a "step", and there are no debug symbols
975 at the target of the call, we want to continue through
976 it ("step over the call").
977 (4) Otherwise, we want to stop soon, after the function
978 prologue ("step into the call"). */
980 if (step_over_calls == 0)
982 /* I presume that step_over_calls is only 0 when we're
983 supposed to be stepping at the assembly language level. */
988 if (step_over_calls > 0)
989 goto step_over_function;
991 tmp = SKIP_TRAMPOLINE_CODE (stop_pc);
993 stop_func_start = tmp;
995 symtab = find_pc_symtab (stop_func_start);
996 if (symtab && LINETABLE (symtab))
997 goto step_into_function;
1000 /* A subroutine call has happened. */
1001 /* Set a special breakpoint after the return */
1002 step_resume_break_address =
1004 (SAVED_PC_AFTER_CALL (get_current_frame ()));
1005 step_resume_break_duplicate
1006 = breakpoint_here_p (step_resume_break_address);
1007 if (breakpoints_inserted)
1008 insert_step_breakpoint ();
1012 /* Subroutine call with source code we should not step over.
1013 Do step to the first line of code in it. */
1014 SKIP_PROLOGUE (stop_func_start);
1015 sal = find_pc_line (stop_func_start, 0);
1016 /* Use the step_resume_break to step until
1017 the end of the prologue, even if that involves jumps
1018 (as it seems to on the vax under 4.2). */
1019 /* If the prologue ends in the middle of a source line,
1020 continue to the end of that source line.
1021 Otherwise, just go to end of prologue. */
1022 #ifdef PROLOGUE_FIRSTLINE_OVERLAP
1023 /* no, don't either. It skips any code that's
1024 legitimately on the first line. */
1026 if (sal.end && sal.pc != stop_func_start)
1027 stop_func_start = sal.end;
1030 if (stop_func_start == stop_pc)
1032 /* We are already there: stop now. */
1037 /* Put the step-breakpoint there and go until there. */
1039 step_resume_break_address = stop_func_start;
1041 step_resume_break_duplicate
1042 = breakpoint_here_p (step_resume_break_address);
1043 if (breakpoints_inserted)
1044 insert_step_breakpoint ();
1045 /* Do not specify what the fp should be when we stop
1046 since on some machines the prologue
1047 is where the new fp value is established. */
1048 step_frame_address = 0;
1049 /* And make sure stepping stops right away then. */
1050 step_range_end = step_range_start;
1055 /* We've wandered out of the step range (but haven't done a
1056 subroutine call or return). */
1058 sal = find_pc_line(stop_pc, 0);
1060 if (step_range_end == 1 || /* stepi or nexti */
1061 sal.line == 0 || /* ...or no line # info */
1062 (stop_pc == sal.pc /* ...or we're at the start */
1063 && current_line != sal.line)) { /* of a different line */
1064 /* Stop because we're done stepping. */
1068 /* We aren't done stepping, and we have line number info for $pc.
1069 Optimize by setting the step_range for the line.
1070 (We might not be in the original line, but if we entered a
1071 new line in mid-statement, we continue stepping. This makes
1072 things like for(;;) statements work better.) */
1073 step_range_start = sal.pc;
1074 step_range_end = sal.end;
1077 /* We never fall through here */
1081 && IN_SIGTRAMP (stop_pc, stop_func_name)
1082 && !IN_SIGTRAMP (prev_pc, prev_func_name))
1084 /* What has happened here is that we have just stepped the inferior
1085 with a signal (because it is a signal which shouldn't make
1086 us stop), thus stepping into sigtramp.
1088 So we need to set a step_resume_break_address breakpoint
1089 and continue until we hit it, and then step. */
1090 step_resume_break_address = prev_pc;
1091 /* Always 1, I think, but it's probably easier to have
1092 the step_resume_break as usual rather than trying to
1093 re-use the breakpoint which is already there. */
1094 step_resume_break_duplicate =
1095 breakpoint_here_p (step_resume_break_address);
1096 if (breakpoints_inserted)
1097 insert_step_breakpoint ();
1098 remove_breakpoints_on_following_step = 1;
1102 /* My apologies to the gods of structured programming. */
1103 /* Come to this label when you need to resume the inferior. It's really much
1104 cleaner at this time to do a goto than to try and figure out what the
1105 if-else chain ought to look like!! */
1110 /* Save the pc before execution, to compare with pc after stop. */
1111 prev_pc = read_pc (); /* Might have been DECR_AFTER_BREAK */
1112 prev_func_start = stop_func_start; /* Ok, since if DECR_PC_AFTER
1113 BREAK is defined, the
1114 original pc would not have
1115 been at the start of a
1117 prev_func_name = stop_func_name;
1120 /* If we did not do break;, it means we should keep
1121 running the inferior and not return to debugger. */
1123 if (trap_expected && stop_signal != SIGTRAP)
1125 /* We took a signal (which we are supposed to pass through to
1126 the inferior, else we'd have done a break above) and we
1127 haven't yet gotten our trap. Simply continue. */
1128 resume ((step_range_end && !step_resume_break_address)
1129 || (trap_expected && !step_resume_break_address)
1130 || bpstat_should_step (),
1135 /* Either the trap was not expected, but we are continuing
1136 anyway (the user asked that this signal be passed to the
1139 The signal was SIGTRAP, e.g. it was our signal, but we
1140 decided we should resume from it.
1142 We're going to run this baby now!
1144 Insert breakpoints now, unless we are trying
1145 to one-proceed past a breakpoint. */
1146 /* If we've just finished a special step resume and we don't
1147 want to hit a breakpoint, pull em out. */
1148 if (!step_resume_break_address &&
1149 remove_breakpoints_on_following_step)
1151 remove_breakpoints_on_following_step = 0;
1152 remove_breakpoints ();
1153 breakpoints_inserted = 0;
1155 else if (!breakpoints_inserted &&
1156 (step_resume_break_address != 0 || !another_trap))
1158 insert_step_breakpoint ();
1159 breakpoints_failed = insert_breakpoints ();
1160 if (breakpoints_failed)
1162 breakpoints_inserted = 1;
1165 trap_expected = another_trap;
1167 if (stop_signal == SIGTRAP)
1170 #ifdef SHIFT_INST_REGS
1171 /* I'm not sure when this following segment applies. I do know, now,
1172 that we shouldn't rewrite the regs when we were stopped by a
1173 random signal from the inferior process. */
1175 if (!bpstat_explains_signal (stop_bpstat)
1176 && (stop_signal != SIGCLD)
1177 && !stopped_by_random_signal)
1179 CORE_ADDR pc_contents = read_register (PC_REGNUM);
1180 CORE_ADDR npc_contents = read_register (NPC_REGNUM);
1181 if (pc_contents != npc_contents)
1183 write_register (NNPC_REGNUM, npc_contents);
1184 write_register (NPC_REGNUM, pc_contents);
1187 #endif /* SHIFT_INST_REGS */
1189 resume ((!step_resume_break_address
1190 && !handling_longjmp
1193 || bpstat_should_step (),
1199 if (target_has_execution)
1201 /* Assuming the inferior still exists, set these up for next
1202 time, just like we did above if we didn't break out of the
1204 prev_pc = read_pc ();
1205 prev_func_start = stop_func_start;
1206 prev_func_name = stop_func_name;
1211 /* Here to return control to GDB when the inferior stops for real.
1212 Print appropriate messages, remove breakpoints, give terminal our modes.
1214 STOP_PRINT_FRAME nonzero means print the executing frame
1215 (pc, function, args, file, line number and line text).
1216 BREAKPOINTS_FAILED nonzero means stop was due to error
1217 attempting to insert breakpoints. */
1222 /* Make sure that the current_frame's pc is correct. This
1223 is a correction for setting up the frame info before doing
1224 DECR_PC_AFTER_BREAK */
1225 if (target_has_execution)
1226 (get_current_frame ())->pc = read_pc ();
1228 if (breakpoints_failed)
1230 target_terminal_ours_for_output ();
1231 print_sys_errmsg ("ptrace", breakpoints_failed);
1232 printf_filtered ("Stopped; cannot insert breakpoints.\n\
1233 The same program may be running in another process.\n");
1236 if (target_has_execution)
1237 remove_step_breakpoint ();
1239 if (target_has_execution && breakpoints_inserted)
1240 if (remove_breakpoints ())
1242 target_terminal_ours_for_output ();
1243 printf_filtered ("Cannot remove breakpoints because program is no longer writable.\n\
1244 It might be running in another process.\n\
1245 Further execution is probably impossible.\n");
1248 breakpoints_inserted = 0;
1250 /* Delete the breakpoint we stopped at, if it wants to be deleted.
1251 Delete any breakpoint that is to be deleted at the next stop. */
1253 breakpoint_auto_delete (stop_bpstat);
1255 /* If an auto-display called a function and that got a signal,
1256 delete that auto-display to avoid an infinite recursion. */
1258 if (stopped_by_random_signal)
1259 disable_current_display ();
1261 if (step_multi && stop_step)
1264 target_terminal_ours ();
1266 /* Look up the hook_stop and run it if it exists. */
1268 if (stop_command->hook)
1270 catch_errors (hook_stop_stub, (char *)stop_command->hook,
1271 "Error while running hook_stop:\n");
1274 if (!target_has_stack)
1277 /* Select innermost stack frame except on return from a stack dummy routine,
1278 or if the program has exited. Print it without a level number if
1279 we have changed functions or hit a breakpoint. Print source line
1281 if (!stop_stack_dummy)
1283 select_frame (get_current_frame (), 0);
1285 if (stop_print_frame)
1289 source_only = bpstat_print (stop_bpstat);
1290 source_only = source_only ||
1292 && step_frame_address == stop_frame_address
1293 && step_start_function == find_pc_function (stop_pc));
1295 print_stack_frame (selected_frame, -1, source_only? -1: 1);
1297 /* Display the auto-display expressions. */
1302 /* Save the function value return registers, if we care.
1303 We might be about to restore their previous contents. */
1304 if (proceed_to_finish)
1305 read_register_bytes (0, stop_registers, REGISTER_BYTES);
1307 if (stop_stack_dummy)
1309 /* Pop the empty frame that contains the stack dummy.
1310 POP_FRAME ends with a setting of the current frame, so we
1311 can use that next. */
1313 select_frame (get_current_frame (), 0);
1318 hook_stop_stub (cmd)
1321 execute_user_command ((struct cmd_list_element *)cmd, 0);
1327 insert_step_breakpoint ()
1329 if (step_resume_break_address && !step_resume_break_duplicate)
1330 target_insert_breakpoint (step_resume_break_address,
1331 step_resume_break_shadow);
1335 remove_step_breakpoint ()
1337 if (step_resume_break_address && !step_resume_break_duplicate)
1338 target_remove_breakpoint (step_resume_break_address,
1339 step_resume_break_shadow);
1342 int signal_stop_state (signo)
1345 return ((signo >= 0 && signo < NSIG) ? signal_stop[signo] : 0);
1348 int signal_print_state (signo)
1351 return ((signo >= 0 && signo < NSIG) ? signal_print[signo] : 0);
1354 int signal_pass_state (signo)
1357 return ((signo >= 0 && signo < NSIG) ? signal_program[signo] : 0);
1363 printf_filtered ("Signal\t\tStop\tPrint\tPass to program\tDescription\n");
1367 sig_print_info (number)
1372 if ((name = strsigno (number)) == NULL)
1373 printf_filtered ("%d\t\t", number);
1375 printf_filtered ("%s (%d)\t", name, number);
1376 printf_filtered ("%s\t", signal_stop[number] ? "Yes" : "No");
1377 printf_filtered ("%s\t", signal_print[number] ? "Yes" : "No");
1378 printf_filtered ("%s\t\t", signal_program[number] ? "Yes" : "No");
1379 printf_filtered ("%s\n", safe_strsignal (number));
1382 /* Specify how various signals in the inferior should be handled. */
1385 handle_command (args, from_tty)
1390 int digits, wordlen;
1391 int sigfirst, signum, siglast;
1394 unsigned char *sigs;
1395 struct cleanup *old_chain;
1399 error_no_arg ("signal to handle");
1402 /* Allocate and zero an array of flags for which signals to handle. */
1404 nsigs = signo_max () + 1;
1405 sigs = (unsigned char *) alloca (nsigs);
1406 memset (sigs, 0, nsigs);
1408 /* Break the command line up into args. */
1410 argv = buildargv (args);
1415 old_chain = make_cleanup (freeargv, (char *) argv);
1417 /* Walk through the args, looking for signal numbers, signal names, and
1418 actions. Signal numbers and signal names may be interspersed with
1419 actions, with the actions being performed for all signals cumulatively
1420 specified. Signal ranges can be specified as <LOW>-<HIGH>. */
1422 while (*argv != NULL)
1424 wordlen = strlen (*argv);
1425 for (digits = 0; isdigit ((*argv)[digits]); digits++) {;}
1427 sigfirst = siglast = -1;
1429 if (wordlen >= 1 && !strncmp (*argv, "all", wordlen))
1431 /* Apply action to all signals except those used by the
1432 debugger. Silently skip those. */
1435 siglast = nsigs - 1;
1437 else if (wordlen >= 1 && !strncmp (*argv, "stop", wordlen))
1439 SET_SIGS (nsigs, sigs, signal_stop);
1440 SET_SIGS (nsigs, sigs, signal_print);
1442 else if (wordlen >= 1 && !strncmp (*argv, "ignore", wordlen))
1444 UNSET_SIGS (nsigs, sigs, signal_program);
1446 else if (wordlen >= 2 && !strncmp (*argv, "print", wordlen))
1448 SET_SIGS (nsigs, sigs, signal_print);
1450 else if (wordlen >= 2 && !strncmp (*argv, "pass", wordlen))
1452 SET_SIGS (nsigs, sigs, signal_program);
1454 else if (wordlen >= 3 && !strncmp (*argv, "nostop", wordlen))
1456 UNSET_SIGS (nsigs, sigs, signal_stop);
1458 else if (wordlen >= 3 && !strncmp (*argv, "noignore", wordlen))
1460 SET_SIGS (nsigs, sigs, signal_program);
1462 else if (wordlen >= 4 && !strncmp (*argv, "noprint", wordlen))
1464 UNSET_SIGS (nsigs, sigs, signal_print);
1465 UNSET_SIGS (nsigs, sigs, signal_stop);
1467 else if (wordlen >= 4 && !strncmp (*argv, "nopass", wordlen))
1469 UNSET_SIGS (nsigs, sigs, signal_program);
1471 else if (digits > 0)
1473 sigfirst = siglast = atoi (*argv);
1474 if ((*argv)[digits] == '-')
1476 siglast = atoi ((*argv) + digits + 1);
1478 if (sigfirst > siglast)
1480 /* Bet he didn't figure we'd think of this case... */
1485 if (sigfirst < 0 || sigfirst >= nsigs)
1487 error ("Signal %d not in range 0-%d", sigfirst, nsigs - 1);
1489 if (siglast < 0 || siglast >= nsigs)
1491 error ("Signal %d not in range 0-%d", siglast, nsigs - 1);
1494 else if ((signum = strtosigno (*argv)) != 0)
1496 sigfirst = siglast = signum;
1500 /* Not a number and not a recognized flag word => complain. */
1501 error ("Unrecognized or ambiguous flag word: \"%s\".", *argv);
1504 /* If any signal numbers or symbol names were found, set flags for
1505 which signals to apply actions to. */
1507 for (signum = sigfirst; signum >= 0 && signum <= siglast; signum++)
1513 if (!allsigs && !sigs[signum])
1515 if (query ("%s is used by the debugger.\nAre you sure you want to change it? ", strsigno (signum)))
1521 printf ("Not confirmed, unchanged.\n");
1535 target_notice_signals();
1539 /* Show the results. */
1540 sig_print_header ();
1541 for (signum = 0; signum < nsigs; signum++)
1545 sig_print_info (signum);
1550 do_cleanups (old_chain);
1553 /* Print current contents of the tables set by the handle command. */
1556 signals_info (signum_exp, from_tty)
1561 sig_print_header ();
1565 /* First see if this is a symbol name. */
1566 i = strtosigno (signum_exp);
1569 /* Nope, maybe it's an address which evaluates to a signal
1571 i = parse_and_eval_address (signum_exp);
1572 if (i >= NSIG || i < 0)
1573 error ("Signal number out of bounds.");
1579 printf_filtered ("\n");
1580 for (i = 0; i < NSIG; i++)
1587 printf_filtered ("\nUse the \"handle\" command to change these tables.\n");
1590 /* Save all of the information associated with the inferior<==>gdb
1591 connection. INF_STATUS is a pointer to a "struct inferior_status"
1592 (defined in inferior.h). */
1595 save_inferior_status (inf_status, restore_stack_info)
1596 struct inferior_status *inf_status;
1597 int restore_stack_info;
1599 inf_status->pc_changed = pc_changed;
1600 inf_status->stop_signal = stop_signal;
1601 inf_status->stop_pc = stop_pc;
1602 inf_status->stop_frame_address = stop_frame_address;
1603 inf_status->stop_step = stop_step;
1604 inf_status->stop_stack_dummy = stop_stack_dummy;
1605 inf_status->stopped_by_random_signal = stopped_by_random_signal;
1606 inf_status->trap_expected = trap_expected;
1607 inf_status->step_range_start = step_range_start;
1608 inf_status->step_range_end = step_range_end;
1609 inf_status->step_frame_address = step_frame_address;
1610 inf_status->step_over_calls = step_over_calls;
1611 inf_status->step_resume_break_address = step_resume_break_address;
1612 inf_status->stop_after_trap = stop_after_trap;
1613 inf_status->stop_soon_quietly = stop_soon_quietly;
1614 /* Save original bpstat chain here; replace it with copy of chain.
1615 If caller's caller is walking the chain, they'll be happier if we
1616 hand them back the original chain when restore_i_s is called. */
1617 inf_status->stop_bpstat = stop_bpstat;
1618 stop_bpstat = bpstat_copy (stop_bpstat);
1619 inf_status->breakpoint_proceeded = breakpoint_proceeded;
1620 inf_status->restore_stack_info = restore_stack_info;
1621 inf_status->proceed_to_finish = proceed_to_finish;
1623 memcpy (inf_status->stop_registers, stop_registers, REGISTER_BYTES);
1625 record_selected_frame (&(inf_status->selected_frame_address),
1626 &(inf_status->selected_level));
1631 restore_inferior_status (inf_status)
1632 struct inferior_status *inf_status;
1635 int level = inf_status->selected_level;
1637 pc_changed = inf_status->pc_changed;
1638 stop_signal = inf_status->stop_signal;
1639 stop_pc = inf_status->stop_pc;
1640 stop_frame_address = inf_status->stop_frame_address;
1641 stop_step = inf_status->stop_step;
1642 stop_stack_dummy = inf_status->stop_stack_dummy;
1643 stopped_by_random_signal = inf_status->stopped_by_random_signal;
1644 trap_expected = inf_status->trap_expected;
1645 step_range_start = inf_status->step_range_start;
1646 step_range_end = inf_status->step_range_end;
1647 step_frame_address = inf_status->step_frame_address;
1648 step_over_calls = inf_status->step_over_calls;
1649 step_resume_break_address = inf_status->step_resume_break_address;
1650 stop_after_trap = inf_status->stop_after_trap;
1651 stop_soon_quietly = inf_status->stop_soon_quietly;
1652 bpstat_clear (&stop_bpstat);
1653 stop_bpstat = inf_status->stop_bpstat;
1654 breakpoint_proceeded = inf_status->breakpoint_proceeded;
1655 proceed_to_finish = inf_status->proceed_to_finish;
1657 memcpy (stop_registers, inf_status->stop_registers, REGISTER_BYTES);
1659 /* The inferior can be gone if the user types "print exit(0)"
1660 (and perhaps other times). */
1661 if (target_has_stack && inf_status->restore_stack_info)
1663 fid = find_relative_frame (get_current_frame (),
1666 /* If inf_status->selected_frame_address is NULL, there was no
1667 previously selected frame. */
1669 FRAME_FP (fid) != inf_status->selected_frame_address ||
1673 /* I'm not sure this error message is a good idea. I have
1674 only seen it occur after "Can't continue previously
1675 requested operation" (we get called from do_cleanups), in
1676 which case it just adds insult to injury (one confusing
1677 error message after another. Besides which, does the
1678 user really care if we can't restore the previously
1680 fprintf (stderr, "Unable to restore previously selected frame.\n");
1682 select_frame (get_current_frame (), 0);
1686 select_frame (fid, inf_status->selected_level);
1692 _initialize_infrun ()
1695 register int numsigs;
1697 add_info ("signals", signals_info,
1698 "What debugger does when program gets various signals.\n\
1699 Specify a signal number as argument to print info on that signal only.");
1700 add_info_alias ("handle", "signals", 0);
1702 add_com ("handle", class_run, handle_command,
1703 "Specify how to handle a signal.\n\
1704 Args are signal numbers and actions to apply to those signals.\n\
1705 Signal numbers may be numeric (ex. 11) or symbolic (ex. SIGSEGV).\n\
1706 Numeric ranges may be specified with the form LOW-HIGH (ex. 14-21).\n\
1707 The special arg \"all\" is recognized to mean all signals except those\n\
1708 used by the debugger, typically SIGTRAP and SIGINT.\n\
1709 Recognized actions include \"stop\", \"nostop\", \"print\", \"noprint\",\n\
1710 \"pass\", \"nopass\", \"ignore\", or \"noignore\".\n\
1711 Stop means reenter debugger if this signal happens (implies print).\n\
1712 Print means print a message if this signal happens.\n\
1713 Pass means let program see this signal; otherwise program doesn't know.\n\
1714 Ignore is a synonym for nopass and noignore is a synonym for pass.\n\
1715 Pass and Stop may be combined.");
1717 stop_command = add_cmd ("stop", class_obscure, not_just_help_class_command,
1718 "There is no `stop' command, but you can set a hook on `stop'.\n\
1719 This allows you to set a list of commands to be run each time execution\n\
1720 of the inferior program stops.", &cmdlist);
1722 numsigs = signo_max () + 1;
1723 signal_stop = (unsigned char *)
1724 xmalloc (sizeof (signal_stop[0]) * numsigs);
1725 signal_print = (unsigned char *)
1726 xmalloc (sizeof (signal_print[0]) * numsigs);
1727 signal_program = (unsigned char *)
1728 xmalloc (sizeof (signal_program[0]) * numsigs);
1729 for (i = 0; i < numsigs; i++)
1732 signal_print[i] = 1;
1733 signal_program[i] = 1;
1736 /* Signals caused by debugger's own actions
1737 should not be given to the program afterwards. */
1738 signal_program[SIGTRAP] = 0;
1739 signal_program[SIGINT] = 0;
1741 /* Signals that are not errors should not normally enter the debugger. */
1743 signal_stop[SIGALRM] = 0;
1744 signal_print[SIGALRM] = 0;
1745 #endif /* SIGALRM */
1747 signal_stop[SIGVTALRM] = 0;
1748 signal_print[SIGVTALRM] = 0;
1749 #endif /* SIGVTALRM */
1751 signal_stop[SIGPROF] = 0;
1752 signal_print[SIGPROF] = 0;
1753 #endif /* SIGPROF */
1755 signal_stop[SIGCHLD] = 0;
1756 signal_print[SIGCHLD] = 0;
1757 #endif /* SIGCHLD */
1759 signal_stop[SIGCLD] = 0;
1760 signal_print[SIGCLD] = 0;
1763 signal_stop[SIGIO] = 0;
1764 signal_print[SIGIO] = 0;
1767 signal_stop[SIGURG] = 0;
1768 signal_print[SIGURG] = 0;