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