2003-09-14 Andrew Cagney <cagney@redhat.com>
[deliverable/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
415/* ARGSUSED */
416void
fba45db2 417term_info (char *arg, int from_tty)
c906108c
SS
418{
419 target_terminal_info (arg, from_tty);
420}
421
422/* ARGSUSED */
423void
fba45db2 424child_terminal_info (char *args, int from_tty)
c906108c
SS
425{
426 if (!gdb_has_a_terminal ())
427 {
428 printf_filtered ("This GDB does not control a terminal.\n");
429 return;
430 }
431
432 printf_filtered ("Inferior's terminal status (currently saved by GDB):\n");
433
434 /* First the fcntl flags. */
435 {
436 int flags;
c5aa993b 437
c906108c
SS
438 flags = tflags_inferior;
439
440 printf_filtered ("File descriptor flags = ");
441
442#ifndef O_ACCMODE
443#define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR)
444#endif
445 /* (O_ACCMODE) parens are to avoid Ultrix header file bug */
446 switch (flags & (O_ACCMODE))
447 {
c5aa993b
JM
448 case O_RDONLY:
449 printf_filtered ("O_RDONLY");
450 break;
451 case O_WRONLY:
452 printf_filtered ("O_WRONLY");
453 break;
454 case O_RDWR:
455 printf_filtered ("O_RDWR");
456 break;
c906108c
SS
457 }
458 flags &= ~(O_ACCMODE);
459
460#ifdef O_NONBLOCK
c5aa993b 461 if (flags & O_NONBLOCK)
c906108c
SS
462 printf_filtered (" | O_NONBLOCK");
463 flags &= ~O_NONBLOCK;
464#endif
c5aa993b 465
c906108c
SS
466#if defined (O_NDELAY)
467 /* If O_NDELAY and O_NONBLOCK are defined to the same thing, we will
468 print it as O_NONBLOCK, which is good cause that is what POSIX
469 has, and the flag will already be cleared by the time we get here. */
470 if (flags & O_NDELAY)
471 printf_filtered (" | O_NDELAY");
472 flags &= ~O_NDELAY;
473#endif
474
475 if (flags & O_APPEND)
476 printf_filtered (" | O_APPEND");
477 flags &= ~O_APPEND;
478
479#if defined (O_BINARY)
480 if (flags & O_BINARY)
481 printf_filtered (" | O_BINARY");
482 flags &= ~O_BINARY;
483#endif
484
485 if (flags)
486 printf_filtered (" | 0x%x", flags);
487 printf_filtered ("\n");
488 }
489
490#ifdef PROCESS_GROUP_TYPE
2acceee2
JM
491 printf_filtered ("Process group = %d\n",
492 (int) inferior_process_group);
c906108c
SS
493#endif
494
2cd58942 495 serial_print_tty_state (stdin_serial, inferior_ttystate, gdb_stdout);
c906108c
SS
496}
497\f
498/* NEW_TTY_PREFORK is called before forking a new child process,
499 so we can record the state of ttys in the child to be formed.
500 TTYNAME is null if we are to share the terminal with gdb;
501 or points to a string containing the name of the desired tty.
502
503 NEW_TTY is called in new child processes under Unix, which will
504 become debugger target processes. This actually switches to
505 the terminal specified in the NEW_TTY_PREFORK call. */
506
507void
fba45db2 508new_tty_prefork (char *ttyname)
c906108c
SS
509{
510 /* Save the name for later, for determining whether we and the child
511 are sharing a tty. */
512 inferior_thisrun_terminal = ttyname;
513}
514
515void
fba45db2 516new_tty (void)
c906108c 517{
52f0bd74 518 int tty;
c906108c
SS
519
520 if (inferior_thisrun_terminal == 0)
521 return;
522#if !defined(__GO32__) && !defined(_WIN32)
523#ifdef TIOCNOTTY
524 /* Disconnect the child process from our controlling terminal. On some
525 systems (SVR4 for example), this may cause a SIGTTOU, so temporarily
526 ignore SIGTTOU. */
c5aa993b 527 tty = open ("/dev/tty", O_RDWR);
c906108c
SS
528 if (tty > 0)
529 {
530 void (*osigttou) ();
531
c5aa993b
JM
532 osigttou = (void (*)()) signal (SIGTTOU, SIG_IGN);
533 ioctl (tty, TIOCNOTTY, 0);
534 close (tty);
535 signal (SIGTTOU, osigttou);
c906108c
SS
536 }
537#endif
538
539 /* Now open the specified new terminal. */
540
541#ifdef USE_O_NOCTTY
c5aa993b 542 tty = open (inferior_thisrun_terminal, O_RDWR | O_NOCTTY);
c906108c 543#else
c5aa993b 544 tty = open (inferior_thisrun_terminal, O_RDWR);
c906108c
SS
545#endif
546 if (tty == -1)
547 {
548 print_sys_errmsg (inferior_thisrun_terminal, errno);
c5aa993b 549 _exit (1);
c906108c
SS
550 }
551
552 /* Avoid use of dup2; doesn't exist on all systems. */
553 if (tty != 0)
c5aa993b
JM
554 {
555 close (0);
556 dup (tty);
557 }
c906108c 558 if (tty != 1)
c5aa993b
JM
559 {
560 close (1);
561 dup (tty);
562 }
c906108c 563 if (tty != 2)
c5aa993b
JM
564 {
565 close (2);
566 dup (tty);
567 }
c906108c 568 if (tty > 2)
c5aa993b
JM
569 close (tty);
570#endif /* !go32 && !win32 */
c906108c
SS
571}
572\f
573/* Kill the inferior process. Make us have no inferior. */
574
575/* ARGSUSED */
576static void
fba45db2 577kill_command (char *arg, int from_tty)
c906108c 578{
39f77062 579 /* FIXME: This should not really be inferior_ptid (or target_has_execution).
c906108c
SS
580 It should be a distinct flag that indicates that a target is active, cuz
581 some targets don't have processes! */
582
39f77062 583 if (ptid_equal (inferior_ptid, null_ptid))
c906108c
SS
584 error ("The program is not being run.");
585 if (!query ("Kill the program being debugged? "))
586 error ("Not confirmed.");
587 target_kill ();
588
c5aa993b 589 init_thread_list (); /* Destroy thread info */
c906108c
SS
590
591 /* Killing off the inferior can leave us with a core file. If so,
592 print the state we are left in. */
c5aa993b
JM
593 if (target_has_stack)
594 {
595 printf_filtered ("In %s,\n", target_longname);
6e7f8b9c 596 if (deprecated_selected_frame == NULL)
c5aa993b
JM
597 fputs_filtered ("No selected stack frame.\n", gdb_stdout);
598 else
6e7f8b9c
AC
599 print_stack_frame (deprecated_selected_frame,
600 frame_relative_level (deprecated_selected_frame), 1);
c5aa993b 601 }
c906108c
SS
602}
603\f
604/* Call set_sigint_trap when you need to pass a signal on to an attached
605 process when handling SIGINT */
606
607/* ARGSUSED */
608static void
fba45db2 609pass_signal (int signo)
c906108c
SS
610{
611#ifndef _WIN32
39f77062 612 kill (PIDGET (inferior_ptid), SIGINT);
c906108c
SS
613#endif
614}
615
c5aa993b 616static void (*osig) ();
c906108c
SS
617
618void
fba45db2 619set_sigint_trap (void)
c906108c
SS
620{
621 if (attach_flag || inferior_thisrun_terminal)
622 {
c5aa993b 623 osig = (void (*)()) signal (SIGINT, pass_signal);
c906108c
SS
624 }
625}
626
627void
fba45db2 628clear_sigint_trap (void)
c906108c
SS
629{
630 if (attach_flag || inferior_thisrun_terminal)
631 {
632 signal (SIGINT, osig);
633 }
634}
635\f
636#if defined (SIGIO) && defined (FASYNC) && defined (FD_SET) && defined (F_SETOWN)
637static void (*old_sigio) ();
638
639static void
fba45db2 640handle_sigio (int signo)
c906108c
SS
641{
642 int numfds;
643 fd_set readfds;
644
645 signal (SIGIO, handle_sigio);
646
647 FD_ZERO (&readfds);
648 FD_SET (target_activity_fd, &readfds);
649 numfds = select (target_activity_fd + 1, &readfds, NULL, NULL, NULL);
650 if (numfds >= 0 && FD_ISSET (target_activity_fd, &readfds))
651 {
652#ifndef _WIN32
653 if ((*target_activity_function) ())
39f77062 654 kill (PIDGET (inferior_ptid), SIGINT);
c906108c
SS
655#endif
656 }
657}
658
659static int old_fcntl_flags;
660
661void
fba45db2 662set_sigio_trap (void)
c906108c
SS
663{
664 if (target_activity_function)
665 {
c5aa993b
JM
666 old_sigio = (void (*)()) signal (SIGIO, handle_sigio);
667 fcntl (target_activity_fd, F_SETOWN, getpid ());
c906108c
SS
668 old_fcntl_flags = fcntl (target_activity_fd, F_GETFL, 0);
669 fcntl (target_activity_fd, F_SETFL, old_fcntl_flags | FASYNC);
670 }
671}
672
673void
fba45db2 674clear_sigio_trap (void)
c906108c
SS
675{
676 if (target_activity_function)
677 {
678 signal (SIGIO, old_sigio);
679 fcntl (target_activity_fd, F_SETFL, old_fcntl_flags);
680 }
681}
682#else /* No SIGIO. */
683void
fba45db2 684set_sigio_trap (void)
c906108c
SS
685{
686 if (target_activity_function)
e1e9e218 687 internal_error (__FILE__, __LINE__, "failed internal consistency check");
c906108c
SS
688}
689
690void
fba45db2 691clear_sigio_trap (void)
c906108c
SS
692{
693 if (target_activity_function)
e1e9e218 694 internal_error (__FILE__, __LINE__, "failed internal consistency check");
c906108c
SS
695}
696#endif /* No SIGIO. */
697\f
698
699/* This is here because this is where we figure out whether we (probably)
700 have job control. Just using job_control only does part of it because
701 setpgid or setpgrp might not exist on a system without job control.
702 It might be considered misplaced (on the other hand, process groups and
703 job control are closely related to ttys).
704
705 For a more clean implementation, in libiberty, put a setpgid which merely
706 calls setpgrp and a setpgrp which does nothing (any system with job control
707 will have one or the other). */
708int
fba45db2 709gdb_setpgid (void)
c906108c
SS
710{
711 int retval = 0;
712
713 if (job_control)
714 {
0200359f
MK
715#if defined (HAVE_TERMIOS) || defined (TIOCGPGRP)
716#ifdef HAVE_SETPGID
717 /* The call setpgid (0, 0) is supposed to work and mean the same
718 thing as this, but on Ultrix 4.2A it fails with EPERM (and
c5aa993b 719 setpgid (getpid (), getpid ()) succeeds). */
c906108c
SS
720 retval = setpgid (getpid (), getpid ());
721#else
0200359f
MK
722#ifdef HAVE_SETPGRP
723#ifdef SETPGRP_VOID
c906108c
SS
724 retval = setpgrp ();
725#else
726 retval = setpgrp (getpid (), getpid ());
0200359f
MK
727#endif
728#endif /* HAVE_SETPGRP */
729#endif /* HAVE_SETPGID */
730#endif /* defined (HAVE_TERMIOS) || defined (TIOCGPGRP) */
c906108c 731 }
0200359f 732
c906108c
SS
733 return retval;
734}
735
736void
fba45db2 737_initialize_inflow (void)
c906108c
SS
738{
739 add_info ("terminal", term_info,
c5aa993b 740 "Print inferior's saved terminal status.");
c906108c
SS
741
742 add_com ("kill", class_run, kill_command,
743 "Kill execution of program being debugged.");
744
39f77062 745 inferior_ptid = null_ptid;
c906108c
SS
746
747 terminal_is_ours = 1;
748
749 /* OK, figure out whether we have job control. If neither termios nor
750 sgtty (i.e. termio or go32), leave job_control 0. */
751
752#if defined (HAVE_TERMIOS)
753 /* Do all systems with termios have the POSIX way of identifying job
754 control? I hope so. */
755#ifdef _POSIX_JOB_CONTROL
756 job_control = 1;
757#else
758#ifdef _SC_JOB_CONTROL
759 job_control = sysconf (_SC_JOB_CONTROL);
760#else
c5aa993b
JM
761 job_control = 0; /* have to assume the worst */
762#endif /* _SC_JOB_CONTROL */
763#endif /* _POSIX_JOB_CONTROL */
764#endif /* HAVE_TERMIOS */
c906108c
SS
765
766#ifdef HAVE_SGTTY
767#ifdef TIOCGPGRP
768 job_control = 1;
769#else
770 job_control = 0;
771#endif /* TIOCGPGRP */
772#endif /* sgtty */
773}
This page took 0.330149 seconds and 4 git commands to generate.