]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/inflow.c
* regcache.c (read_pc_pid): Restore inferior_ptid after reading
[thirdparty/binutils-gdb.git] / gdb / inflow.c
CommitLineData
c906108c 1/* Low level interface to ptrace, for GDB when running under Unix.
b6ba6518
KB
2 Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
3 1996, 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
c906108c 4
c5aa993b 5 This file is part of GDB.
c906108c 6
c5aa993b
JM
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.
c906108c 11
c5aa993b
JM
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.
c906108c 16
c5aa993b
JM
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
c906108c
SS
21
22#include "defs.h"
23#include "frame.h"
24#include "inferior.h"
25#include "command.h"
c906108c
SS
26#include "serial.h"
27#include "terminal.h"
28#include "target.h"
29#include "gdbthread.h"
30
31#include "gdb_string.h"
32#include <signal.h>
33#include <fcntl.h>
7a292a7a
SS
34#ifdef HAVE_SYS_SELECT_H
35#include <sys/select.h>
36#endif
c906108c 37
44270758 38#include "inflow.h"
c906108c 39
c2d11a7d
JM
40#ifdef HAVE_SYS_IOCTL_H
41#include <sys/ioctl.h>
42#endif
43
c906108c 44#if defined (SIGIO) && defined (FASYNC) && defined (FD_SET) && defined (F_SETOWN)
a14ed312 45static void handle_sigio (int);
c906108c
SS
46#endif
47
a14ed312 48extern void _initialize_inflow (void);
392a587b 49
a14ed312 50static void pass_signal (int);
c906108c 51
a14ed312 52static void kill_command (char *, int);
c906108c 53
a14ed312 54static void terminal_ours_1 (int);
c906108c
SS
55\f
56/* Record terminal status separately for debugger and inferior. */
57
819cc324 58static struct serial *stdin_serial;
c906108c
SS
59
60/* TTY state for the inferior. We save it whenever the inferior stops, and
61 restore it when it resumes. */
62static serial_ttystate inferior_ttystate;
63
64/* Our own tty state, which we restore every time we need to deal with the
65 terminal. We only set it once, when GDB first starts. The settings of
66 flags which readline saves and restores and unimportant. */
67static serial_ttystate our_ttystate;
68
69/* fcntl flags for us and the inferior. Saved and restored just like
70 {our,inferior}_ttystate. */
71static int tflags_inferior;
72static int tflags_ours;
73
74#ifdef PROCESS_GROUP_TYPE
75/* Process group for us and the inferior. Saved and restored just like
76 {our,inferior}_ttystate. */
77PROCESS_GROUP_TYPE our_process_group;
78PROCESS_GROUP_TYPE inferior_process_group;
79#endif
80
81/* While the inferior is running, we want SIGINT and SIGQUIT to go to the
82 inferior only. If we have job control, that takes care of it. If not,
83 we save our handlers in these two variables and set SIGINT and SIGQUIT
84 to SIG_IGN. */
85
86static void (*sigint_ours) ();
87static void (*sigquit_ours) ();
88
89/* The name of the tty (from the `tty' command) that we gave to the inferior
90 when it was last started. */
91
92static char *inferior_thisrun_terminal;
93
94/* Nonzero if our terminal settings are in effect. Zero if the
95 inferior's settings are in effect. Ignored if !gdb_has_a_terminal
96 (). */
97
98int terminal_is_ours;
99
c5aa993b
JM
100enum
101 {
102 yes, no, have_not_checked
103 }
104gdb_has_a_terminal_flag = have_not_checked;
c906108c
SS
105
106/* Does GDB have a terminal (on stdin)? */
107int
fba45db2 108gdb_has_a_terminal (void)
c906108c
SS
109{
110 switch (gdb_has_a_terminal_flag)
111 {
112 case yes:
113 return 1;
114 case no:
115 return 0;
116 case have_not_checked:
2cd58942
AC
117 /* Get all the current tty settings (including whether we have a
118 tty at all!). Can't do this in _initialize_inflow because
119 serial_fdopen() won't work until the serial_ops_list is
120 initialized. */
c906108c
SS
121
122#ifdef F_GETFL
123 tflags_ours = fcntl (0, F_GETFL, 0);
124#endif
125
126 gdb_has_a_terminal_flag = no;
2cd58942 127 stdin_serial = serial_fdopen (0);
c906108c
SS
128 if (stdin_serial != NULL)
129 {
2cd58942 130 our_ttystate = serial_get_tty_state (stdin_serial);
c906108c
SS
131
132 if (our_ttystate != NULL)
133 {
134 gdb_has_a_terminal_flag = yes;
135#ifdef HAVE_TERMIOS
136 our_process_group = tcgetpgrp (0);
137#endif
138#ifdef HAVE_TERMIO
139 our_process_group = getpgrp ();
140#endif
141#ifdef HAVE_SGTTY
142 ioctl (0, TIOCGPGRP, &our_process_group);
143#endif
144 }
145 }
146
147 return gdb_has_a_terminal_flag == yes;
148 default:
149 /* "Can't happen". */
150 return 0;
151 }
152}
153
154/* Macro for printing errors from ioctl operations */
155
156#define OOPSY(what) \
157 if (result == -1) \
158 fprintf_unfiltered(gdb_stderr, "[%s failed in terminal_inferior: %s]\n", \
dc672865 159 what, safe_strerror (errno))
c906108c 160
a14ed312 161static void terminal_ours_1 (int);
c906108c
SS
162
163/* Initialize the terminal settings we record for the inferior,
164 before we actually run the inferior. */
165
166void
fba45db2 167terminal_init_inferior_with_pgrp (int pgrp)
c906108c
SS
168{
169 if (gdb_has_a_terminal ())
170 {
2cd58942
AC
171 /* We could just as well copy our_ttystate (if we felt like
172 adding a new function serial_copy_tty_state()). */
c906108c 173 if (inferior_ttystate)
b8c9b27d 174 xfree (inferior_ttystate);
2cd58942 175 inferior_ttystate = serial_get_tty_state (stdin_serial);
c906108c
SS
176
177#ifdef PROCESS_GROUP_TYPE
178 inferior_process_group = pgrp;
179#endif
180
181 /* Make sure that next time we call terminal_inferior (which will be
c5aa993b
JM
182 before the program runs, as it needs to be), we install the new
183 process group. */
c906108c
SS
184 terminal_is_ours = 1;
185 }
186}
187
a790ad35
SC
188/* Save the terminal settings again. This is necessary for the TUI
189 when it switches to TUI or non-TUI mode; curses changes the terminal
190 and gdb must be able to restore it correctly. */
191
192void
7bda5e4a 193terminal_save_ours (void)
a790ad35
SC
194{
195 if (gdb_has_a_terminal ())
196 {
197 /* We could just as well copy our_ttystate (if we felt like adding
198 a new function serial_copy_tty_state). */
199 if (our_ttystate)
200 xfree (our_ttystate);
201 our_ttystate = serial_get_tty_state (stdin_serial);
202 }
203}
204
c906108c 205void
fba45db2 206terminal_init_inferior (void)
c906108c
SS
207{
208#ifdef PROCESS_GROUP_TYPE
209 /* This is for Lynx, and should be cleaned up by having Lynx be a separate
210 debugging target with a version of target_terminal_init_inferior which
211 passes in the process group to a generic routine which does all the work
212 (and the non-threaded child_terminal_init_inferior can just pass in
39f77062 213 inferior_ptid to the same routine). */
c906108c 214 /* We assume INFERIOR_PID is also the child's process group. */
39f77062 215 terminal_init_inferior_with_pgrp (PIDGET (inferior_ptid));
c906108c
SS
216#endif /* PROCESS_GROUP_TYPE */
217}
218
219/* Put the inferior's terminal settings into effect.
220 This is preparation for starting or resuming the inferior. */
221
222void
fba45db2 223terminal_inferior (void)
c906108c
SS
224{
225 if (gdb_has_a_terminal () && terminal_is_ours
226 && inferior_thisrun_terminal == 0)
227 {
228 int result;
229
230#ifdef F_GETFL
231 /* Is there a reason this is being done twice? It happens both
c5aa993b
JM
232 places we use F_SETFL, so I'm inclined to think perhaps there
233 is some reason, however perverse. Perhaps not though... */
c906108c
SS
234 result = fcntl (0, F_SETFL, tflags_inferior);
235 result = fcntl (0, F_SETFL, tflags_inferior);
236 OOPSY ("fcntl F_SETFL");
237#endif
238
239 /* Because we were careful to not change in or out of raw mode in
c5aa993b
JM
240 terminal_ours, we will not change in our out of raw mode with
241 this call, so we don't flush any input. */
2cd58942 242 result = serial_set_tty_state (stdin_serial, inferior_ttystate);
c906108c
SS
243 OOPSY ("setting tty state");
244
245 if (!job_control)
246 {
c5aa993b 247 sigint_ours = (void (*)()) signal (SIGINT, SIG_IGN);
c906108c 248#ifdef SIGQUIT
c5aa993b 249 sigquit_ours = (void (*)()) signal (SIGQUIT, SIG_IGN);
c906108c
SS
250#endif
251 }
252
253 /* If attach_flag is set, we don't know whether we are sharing a
c5aa993b
JM
254 terminal with the inferior or not. (attaching a process
255 without a terminal is one case where we do not; attaching a
256 process which we ran from the same shell as GDB via `&' is
257 one case where we do, I think (but perhaps this is not
258 `sharing' in the sense that we need to save and restore tty
259 state)). I don't know if there is any way to tell whether we
260 are sharing a terminal. So what we do is to go through all
261 the saving and restoring of the tty state, but ignore errors
262 setting the process group, which will happen if we are not
263 sharing a terminal). */
c906108c
SS
264
265 if (job_control)
266 {
267#ifdef HAVE_TERMIOS
268 result = tcsetpgrp (0, inferior_process_group);
269 if (!attach_flag)
270 OOPSY ("tcsetpgrp");
271#endif
272
273#ifdef HAVE_SGTTY
274 result = ioctl (0, TIOCSPGRP, &inferior_process_group);
275 if (!attach_flag)
276 OOPSY ("TIOCSPGRP");
277#endif
278 }
279
280 }
281 terminal_is_ours = 0;
282}
283
284/* Put some of our terminal settings into effect,
285 enough to get proper results from our output,
286 but do not change into or out of RAW mode
287 so that no input is discarded.
288
289 After doing this, either terminal_ours or terminal_inferior
290 should be called to get back to a normal state of affairs. */
291
292void
fba45db2 293terminal_ours_for_output (void)
c906108c
SS
294{
295 terminal_ours_1 (1);
296}
297
298/* Put our terminal settings into effect.
299 First record the inferior's terminal settings
300 so they can be restored properly later. */
301
302void
fba45db2 303terminal_ours (void)
c906108c
SS
304{
305 terminal_ours_1 (0);
306}
307
308/* output_only is not used, and should not be used unless we introduce
309 separate terminal_is_ours and terminal_is_ours_for_output
310 flags. */
311
312static void
fba45db2 313terminal_ours_1 (int output_only)
c906108c
SS
314{
315 /* Checking inferior_thisrun_terminal is necessary so that
316 if GDB is running in the background, it won't block trying
317 to do the ioctl()'s below. Checking gdb_has_a_terminal
318 avoids attempting all the ioctl's when running in batch. */
319 if (inferior_thisrun_terminal != 0 || gdb_has_a_terminal () == 0)
320 return;
321
322 if (!terminal_is_ours)
323 {
4b69c284 324#ifdef SIGTTOU
c906108c 325 /* Ignore this signal since it will happen when we try to set the
c5aa993b 326 pgrp. */
4b69c284
AC
327 void (*osigttou) () = NULL;
328#endif
c906108c
SS
329 int result;
330
331 terminal_is_ours = 1;
332
333#ifdef SIGTTOU
334 if (job_control)
c5aa993b 335 osigttou = (void (*)()) signal (SIGTTOU, SIG_IGN);
c906108c
SS
336#endif
337
338 if (inferior_ttystate)
b8c9b27d 339 xfree (inferior_ttystate);
2cd58942 340 inferior_ttystate = serial_get_tty_state (stdin_serial);
c906108c
SS
341#ifdef HAVE_TERMIOS
342 inferior_process_group = tcgetpgrp (0);
343#endif
344#ifdef HAVE_TERMIO
345 inferior_process_group = getpgrp ();
346#endif
347#ifdef HAVE_SGTTY
348 ioctl (0, TIOCGPGRP, &inferior_process_group);
349#endif
350
351 /* Here we used to set ICANON in our ttystate, but I believe this
c5aa993b
JM
352 was an artifact from before when we used readline. Readline sets
353 the tty state when it needs to.
354 FIXME-maybe: However, query() expects non-raw mode and doesn't
355 use readline. Maybe query should use readline (on the other hand,
356 this only matters for HAVE_SGTTY, not termio or termios, I think). */
c906108c
SS
357
358 /* Set tty state to our_ttystate. We don't change in our out of raw
c5aa993b
JM
359 mode, to avoid flushing input. We need to do the same thing
360 regardless of output_only, because we don't have separate
361 terminal_is_ours and terminal_is_ours_for_output flags. It's OK,
362 though, since readline will deal with raw mode when/if it needs to.
363 */
c906108c 364
2cd58942 365 serial_noflush_set_tty_state (stdin_serial, our_ttystate,
c906108c
SS
366 inferior_ttystate);
367
368 if (job_control)
369 {
370#ifdef HAVE_TERMIOS
371 result = tcsetpgrp (0, our_process_group);
372#if 0
373 /* This fails on Ultrix with EINVAL if you run the testsuite
374 in the background with nohup, and then log out. GDB never
375 used to check for an error here, so perhaps there are other
376 such situations as well. */
377 if (result == -1)
378 fprintf_unfiltered (gdb_stderr, "[tcsetpgrp failed in terminal_ours: %s]\n",
dc672865 379 safe_strerror (errno));
c906108c
SS
380#endif
381#endif /* termios */
382
383#ifdef HAVE_SGTTY
384 result = ioctl (0, TIOCSPGRP, &our_process_group);
385#endif
386 }
387
388#ifdef SIGTTOU
389 if (job_control)
390 signal (SIGTTOU, osigttou);
391#endif
392
393 if (!job_control)
394 {
395 signal (SIGINT, sigint_ours);
396#ifdef SIGQUIT
397 signal (SIGQUIT, sigquit_ours);
398#endif
399 }
400
401#ifdef F_GETFL
402 tflags_inferior = fcntl (0, F_GETFL, 0);
403
404 /* Is there a reason this is being done twice? It happens both
c5aa993b
JM
405 places we use F_SETFL, so I'm inclined to think perhaps there
406 is some reason, however perverse. Perhaps not though... */
c906108c
SS
407 result = fcntl (0, F_SETFL, tflags_ours);
408 result = fcntl (0, F_SETFL, tflags_ours);
409#endif
410
c5aa993b 411 result = result; /* lint */
c906108c
SS
412 }
413}
414
c906108c 415void
fba45db2 416term_info (char *arg, int from_tty)
c906108c
SS
417{
418 target_terminal_info (arg, from_tty);
419}
420
c906108c 421void
fba45db2 422child_terminal_info (char *args, int from_tty)
c906108c
SS
423{
424 if (!gdb_has_a_terminal ())
425 {
426 printf_filtered ("This GDB does not control a terminal.\n");
427 return;
428 }
429
430 printf_filtered ("Inferior's terminal status (currently saved by GDB):\n");
431
432 /* First the fcntl flags. */
433 {
434 int flags;
c5aa993b 435
c906108c
SS
436 flags = tflags_inferior;
437
438 printf_filtered ("File descriptor flags = ");
439
440#ifndef O_ACCMODE
441#define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR)
442#endif
443 /* (O_ACCMODE) parens are to avoid Ultrix header file bug */
444 switch (flags & (O_ACCMODE))
445 {
c5aa993b
JM
446 case O_RDONLY:
447 printf_filtered ("O_RDONLY");
448 break;
449 case O_WRONLY:
450 printf_filtered ("O_WRONLY");
451 break;
452 case O_RDWR:
453 printf_filtered ("O_RDWR");
454 break;
c906108c
SS
455 }
456 flags &= ~(O_ACCMODE);
457
458#ifdef O_NONBLOCK
c5aa993b 459 if (flags & O_NONBLOCK)
c906108c
SS
460 printf_filtered (" | O_NONBLOCK");
461 flags &= ~O_NONBLOCK;
462#endif
c5aa993b 463
c906108c
SS
464#if defined (O_NDELAY)
465 /* If O_NDELAY and O_NONBLOCK are defined to the same thing, we will
466 print it as O_NONBLOCK, which is good cause that is what POSIX
467 has, and the flag will already be cleared by the time we get here. */
468 if (flags & O_NDELAY)
469 printf_filtered (" | O_NDELAY");
470 flags &= ~O_NDELAY;
471#endif
472
473 if (flags & O_APPEND)
474 printf_filtered (" | O_APPEND");
475 flags &= ~O_APPEND;
476
477#if defined (O_BINARY)
478 if (flags & O_BINARY)
479 printf_filtered (" | O_BINARY");
480 flags &= ~O_BINARY;
481#endif
482
483 if (flags)
484 printf_filtered (" | 0x%x", flags);
485 printf_filtered ("\n");
486 }
487
488#ifdef PROCESS_GROUP_TYPE
2acceee2
JM
489 printf_filtered ("Process group = %d\n",
490 (int) inferior_process_group);
c906108c
SS
491#endif
492
2cd58942 493 serial_print_tty_state (stdin_serial, inferior_ttystate, gdb_stdout);
c906108c
SS
494}
495\f
496/* NEW_TTY_PREFORK is called before forking a new child process,
497 so we can record the state of ttys in the child to be formed.
498 TTYNAME is null if we are to share the terminal with gdb;
499 or points to a string containing the name of the desired tty.
500
501 NEW_TTY is called in new child processes under Unix, which will
502 become debugger target processes. This actually switches to
503 the terminal specified in the NEW_TTY_PREFORK call. */
504
505void
fba45db2 506new_tty_prefork (char *ttyname)
c906108c
SS
507{
508 /* Save the name for later, for determining whether we and the child
509 are sharing a tty. */
510 inferior_thisrun_terminal = ttyname;
511}
512
513void
fba45db2 514new_tty (void)
c906108c 515{
52f0bd74 516 int tty;
c906108c
SS
517
518 if (inferior_thisrun_terminal == 0)
519 return;
520#if !defined(__GO32__) && !defined(_WIN32)
521#ifdef TIOCNOTTY
522 /* Disconnect the child process from our controlling terminal. On some
523 systems (SVR4 for example), this may cause a SIGTTOU, so temporarily
524 ignore SIGTTOU. */
c5aa993b 525 tty = open ("/dev/tty", O_RDWR);
c906108c
SS
526 if (tty > 0)
527 {
528 void (*osigttou) ();
529
c5aa993b
JM
530 osigttou = (void (*)()) signal (SIGTTOU, SIG_IGN);
531 ioctl (tty, TIOCNOTTY, 0);
532 close (tty);
533 signal (SIGTTOU, osigttou);
c906108c
SS
534 }
535#endif
536
537 /* Now open the specified new terminal. */
538
539#ifdef USE_O_NOCTTY
c5aa993b 540 tty = open (inferior_thisrun_terminal, O_RDWR | O_NOCTTY);
c906108c 541#else
c5aa993b 542 tty = open (inferior_thisrun_terminal, O_RDWR);
c906108c
SS
543#endif
544 if (tty == -1)
545 {
546 print_sys_errmsg (inferior_thisrun_terminal, errno);
c5aa993b 547 _exit (1);
c906108c
SS
548 }
549
550 /* Avoid use of dup2; doesn't exist on all systems. */
551 if (tty != 0)
c5aa993b
JM
552 {
553 close (0);
554 dup (tty);
555 }
c906108c 556 if (tty != 1)
c5aa993b
JM
557 {
558 close (1);
559 dup (tty);
560 }
c906108c 561 if (tty != 2)
c5aa993b
JM
562 {
563 close (2);
564 dup (tty);
565 }
c906108c 566 if (tty > 2)
c5aa993b
JM
567 close (tty);
568#endif /* !go32 && !win32 */
c906108c
SS
569}
570\f
571/* Kill the inferior process. Make us have no inferior. */
572
c906108c 573static void
fba45db2 574kill_command (char *arg, int from_tty)
c906108c 575{
39f77062 576 /* FIXME: This should not really be inferior_ptid (or target_has_execution).
c906108c
SS
577 It should be a distinct flag that indicates that a target is active, cuz
578 some targets don't have processes! */
579
39f77062 580 if (ptid_equal (inferior_ptid, null_ptid))
c906108c
SS
581 error ("The program is not being run.");
582 if (!query ("Kill the program being debugged? "))
583 error ("Not confirmed.");
584 target_kill ();
585
c5aa993b 586 init_thread_list (); /* Destroy thread info */
c906108c
SS
587
588 /* Killing off the inferior can leave us with a core file. If so,
589 print the state we are left in. */
c5aa993b
JM
590 if (target_has_stack)
591 {
592 printf_filtered ("In %s,\n", target_longname);
6e7f8b9c 593 if (deprecated_selected_frame == NULL)
c5aa993b
JM
594 fputs_filtered ("No selected stack frame.\n", gdb_stdout);
595 else
6e7f8b9c
AC
596 print_stack_frame (deprecated_selected_frame,
597 frame_relative_level (deprecated_selected_frame), 1);
c5aa993b 598 }
c906108c
SS
599}
600\f
601/* Call set_sigint_trap when you need to pass a signal on to an attached
602 process when handling SIGINT */
603
c906108c 604static void
fba45db2 605pass_signal (int signo)
c906108c
SS
606{
607#ifndef _WIN32
39f77062 608 kill (PIDGET (inferior_ptid), SIGINT);
c906108c
SS
609#endif
610}
611
c5aa993b 612static void (*osig) ();
c906108c
SS
613
614void
fba45db2 615set_sigint_trap (void)
c906108c
SS
616{
617 if (attach_flag || inferior_thisrun_terminal)
618 {
c5aa993b 619 osig = (void (*)()) signal (SIGINT, pass_signal);
c906108c
SS
620 }
621}
622
623void
fba45db2 624clear_sigint_trap (void)
c906108c
SS
625{
626 if (attach_flag || inferior_thisrun_terminal)
627 {
628 signal (SIGINT, osig);
629 }
630}
631\f
632#if defined (SIGIO) && defined (FASYNC) && defined (FD_SET) && defined (F_SETOWN)
633static void (*old_sigio) ();
634
635static void
fba45db2 636handle_sigio (int signo)
c906108c
SS
637{
638 int numfds;
639 fd_set readfds;
640
641 signal (SIGIO, handle_sigio);
642
643 FD_ZERO (&readfds);
644 FD_SET (target_activity_fd, &readfds);
645 numfds = select (target_activity_fd + 1, &readfds, NULL, NULL, NULL);
646 if (numfds >= 0 && FD_ISSET (target_activity_fd, &readfds))
647 {
648#ifndef _WIN32
649 if ((*target_activity_function) ())
39f77062 650 kill (PIDGET (inferior_ptid), SIGINT);
c906108c
SS
651#endif
652 }
653}
654
655static int old_fcntl_flags;
656
657void
fba45db2 658set_sigio_trap (void)
c906108c
SS
659{
660 if (target_activity_function)
661 {
c5aa993b
JM
662 old_sigio = (void (*)()) signal (SIGIO, handle_sigio);
663 fcntl (target_activity_fd, F_SETOWN, getpid ());
c906108c
SS
664 old_fcntl_flags = fcntl (target_activity_fd, F_GETFL, 0);
665 fcntl (target_activity_fd, F_SETFL, old_fcntl_flags | FASYNC);
666 }
667}
668
669void
fba45db2 670clear_sigio_trap (void)
c906108c
SS
671{
672 if (target_activity_function)
673 {
674 signal (SIGIO, old_sigio);
675 fcntl (target_activity_fd, F_SETFL, old_fcntl_flags);
676 }
677}
678#else /* No SIGIO. */
679void
fba45db2 680set_sigio_trap (void)
c906108c
SS
681{
682 if (target_activity_function)
e1e9e218 683 internal_error (__FILE__, __LINE__, "failed internal consistency check");
c906108c
SS
684}
685
686void
fba45db2 687clear_sigio_trap (void)
c906108c
SS
688{
689 if (target_activity_function)
e1e9e218 690 internal_error (__FILE__, __LINE__, "failed internal consistency check");
c906108c
SS
691}
692#endif /* No SIGIO. */
693\f
694
695/* This is here because this is where we figure out whether we (probably)
696 have job control. Just using job_control only does part of it because
697 setpgid or setpgrp might not exist on a system without job control.
698 It might be considered misplaced (on the other hand, process groups and
699 job control are closely related to ttys).
700
701 For a more clean implementation, in libiberty, put a setpgid which merely
702 calls setpgrp and a setpgrp which does nothing (any system with job control
703 will have one or the other). */
704int
fba45db2 705gdb_setpgid (void)
c906108c
SS
706{
707 int retval = 0;
708
709 if (job_control)
710 {
0200359f
MK
711#if defined (HAVE_TERMIOS) || defined (TIOCGPGRP)
712#ifdef HAVE_SETPGID
713 /* The call setpgid (0, 0) is supposed to work and mean the same
714 thing as this, but on Ultrix 4.2A it fails with EPERM (and
c5aa993b 715 setpgid (getpid (), getpid ()) succeeds). */
c906108c
SS
716 retval = setpgid (getpid (), getpid ());
717#else
0200359f
MK
718#ifdef HAVE_SETPGRP
719#ifdef SETPGRP_VOID
c906108c
SS
720 retval = setpgrp ();
721#else
722 retval = setpgrp (getpid (), getpid ());
0200359f
MK
723#endif
724#endif /* HAVE_SETPGRP */
725#endif /* HAVE_SETPGID */
726#endif /* defined (HAVE_TERMIOS) || defined (TIOCGPGRP) */
c906108c 727 }
0200359f 728
c906108c
SS
729 return retval;
730}
731
732void
fba45db2 733_initialize_inflow (void)
c906108c
SS
734{
735 add_info ("terminal", term_info,
c5aa993b 736 "Print inferior's saved terminal status.");
c906108c
SS
737
738 add_com ("kill", class_run, kill_command,
739 "Kill execution of program being debugged.");
740
39f77062 741 inferior_ptid = null_ptid;
c906108c
SS
742
743 terminal_is_ours = 1;
744
745 /* OK, figure out whether we have job control. If neither termios nor
746 sgtty (i.e. termio or go32), leave job_control 0. */
747
748#if defined (HAVE_TERMIOS)
749 /* Do all systems with termios have the POSIX way of identifying job
750 control? I hope so. */
751#ifdef _POSIX_JOB_CONTROL
752 job_control = 1;
753#else
754#ifdef _SC_JOB_CONTROL
755 job_control = sysconf (_SC_JOB_CONTROL);
756#else
c5aa993b
JM
757 job_control = 0; /* have to assume the worst */
758#endif /* _SC_JOB_CONTROL */
759#endif /* _POSIX_JOB_CONTROL */
760#endif /* HAVE_TERMIOS */
c906108c
SS
761
762#ifdef HAVE_SGTTY
763#ifdef TIOCGPGRP
764 job_control = 1;
765#else
766 job_control = 0;
767#endif /* TIOCGPGRP */
768#endif /* sgtty */
769}