OSDN Git Service

2003-02-06 Andrew Cagney <ac131313@redhat.com>
[pf3gnuchains/pf3gnuchains3x.git] / gdb / inflow.c
1 /* Low level interface to ptrace, for GDB when running under Unix.
2    Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
3    1996, 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
4
5    This file is part of GDB.
6
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.
11
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.
16
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.  */
21
22 #include "defs.h"
23 #include "frame.h"
24 #include "inferior.h"
25 #include "command.h"
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>
34 #ifdef HAVE_SYS_SELECT_H
35 #include <sys/select.h>
36 #endif
37
38 #include "inflow.h"
39
40 #ifdef HAVE_SYS_IOCTL_H
41 #include <sys/ioctl.h>
42 #endif
43
44 #if defined (SIGIO) && defined (FASYNC) && defined (FD_SET) && defined (F_SETOWN)
45 static void handle_sigio (int);
46 #endif
47
48 extern void _initialize_inflow (void);
49
50 static void pass_signal (int);
51
52 static void kill_command (char *, int);
53
54 static void terminal_ours_1 (int);
55 \f
56 /* Record terminal status separately for debugger and inferior.  */
57
58 static struct serial *stdin_serial;
59
60 /* TTY state for the inferior.  We save it whenever the inferior stops, and
61    restore it when it resumes.  */
62 static 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.  */
67 static serial_ttystate our_ttystate;
68
69 /* fcntl flags for us and the inferior.  Saved and restored just like
70    {our,inferior}_ttystate.  */
71 static int tflags_inferior;
72 static 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.  */
77 PROCESS_GROUP_TYPE our_process_group;
78 PROCESS_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
86 static void (*sigint_ours) ();
87 static 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
92 static 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
98 int terminal_is_ours;
99
100 enum
101   {
102     yes, no, have_not_checked
103   }
104 gdb_has_a_terminal_flag = have_not_checked;
105
106 /* Does GDB have a terminal (on stdin)?  */
107 int
108 gdb_has_a_terminal (void)
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:
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.  */
121
122 #ifdef F_GETFL
123       tflags_ours = fcntl (0, F_GETFL, 0);
124 #endif
125
126       gdb_has_a_terminal_flag = no;
127       stdin_serial = serial_fdopen (0);
128       if (stdin_serial != NULL)
129         {
130           our_ttystate = serial_get_tty_state (stdin_serial);
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", \
159             what, safe_strerror (errno))
160
161 static void terminal_ours_1 (int);
162
163 /* Initialize the terminal settings we record for the inferior,
164    before we actually run the inferior.  */
165
166 void
167 terminal_init_inferior_with_pgrp (int pgrp)
168 {
169   if (gdb_has_a_terminal ())
170     {
171       /* We could just as well copy our_ttystate (if we felt like
172          adding a new function serial_copy_tty_state()).  */
173       if (inferior_ttystate)
174         xfree (inferior_ttystate);
175       inferior_ttystate = serial_get_tty_state (stdin_serial);
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
182          before the program runs, as it needs to be), we install the new
183          process group.  */
184       terminal_is_ours = 1;
185     }
186 }
187
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
192 void
193 terminal_save_ours (void)
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
205 void
206 terminal_init_inferior (void)
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
213      inferior_ptid to the same routine).  */
214   /* We assume INFERIOR_PID is also the child's process group.  */
215   terminal_init_inferior_with_pgrp (PIDGET (inferior_ptid));
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
222 void
223 terminal_inferior (void)
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
232          places we use F_SETFL, so I'm inclined to think perhaps there
233          is some reason, however perverse.  Perhaps not though...  */
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
240          terminal_ours, we will not change in our out of raw mode with
241          this call, so we don't flush any input.  */
242       result = serial_set_tty_state (stdin_serial, inferior_ttystate);
243       OOPSY ("setting tty state");
244
245       if (!job_control)
246         {
247           sigint_ours = (void (*)()) signal (SIGINT, SIG_IGN);
248 #ifdef SIGQUIT
249           sigquit_ours = (void (*)()) signal (SIGQUIT, SIG_IGN);
250 #endif
251         }
252
253       /* If attach_flag is set, we don't know whether we are sharing a
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).  */
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
292 void
293 terminal_ours_for_output (void)
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
302 void
303 terminal_ours (void)
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
312 static void
313 terminal_ours_1 (int output_only)
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     {
324 #ifdef SIGTTOU
325       /* Ignore this signal since it will happen when we try to set the
326          pgrp.  */
327       void (*osigttou) () = NULL;
328 #endif
329       int result;
330
331       terminal_is_ours = 1;
332
333 #ifdef SIGTTOU
334       if (job_control)
335         osigttou = (void (*)()) signal (SIGTTOU, SIG_IGN);
336 #endif
337
338       if (inferior_ttystate)
339         xfree (inferior_ttystate);
340       inferior_ttystate = serial_get_tty_state (stdin_serial);
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
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).  */
357
358       /* Set tty state to our_ttystate.  We don't change in our out of raw
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        */
364
365       serial_noflush_set_tty_state (stdin_serial, our_ttystate,
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",
379                                 safe_strerror (errno));
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
405          places we use F_SETFL, so I'm inclined to think perhaps there
406          is some reason, however perverse.  Perhaps not though...  */
407       result = fcntl (0, F_SETFL, tflags_ours);
408       result = fcntl (0, F_SETFL, tflags_ours);
409 #endif
410
411       result = result;          /* lint */
412     }
413 }
414
415 /* ARGSUSED */
416 void
417 term_info (char *arg, int from_tty)
418 {
419   target_terminal_info (arg, from_tty);
420 }
421
422 /* ARGSUSED */
423 void
424 child_terminal_info (char *args, int from_tty)
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;
437
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       {
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;
457       }
458     flags &= ~(O_ACCMODE);
459
460 #ifdef O_NONBLOCK
461     if (flags & O_NONBLOCK)
462       printf_filtered (" | O_NONBLOCK");
463     flags &= ~O_NONBLOCK;
464 #endif
465
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
491   printf_filtered ("Process group = %d\n",
492                    (int) inferior_process_group);
493 #endif
494
495   serial_print_tty_state (stdin_serial, inferior_ttystate, gdb_stdout);
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
507 void
508 new_tty_prefork (char *ttyname)
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
515 void
516 new_tty (void)
517 {
518   register int tty;
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. */
527   tty = open ("/dev/tty", O_RDWR);
528   if (tty > 0)
529     {
530       void (*osigttou) ();
531
532       osigttou = (void (*)()) signal (SIGTTOU, SIG_IGN);
533       ioctl (tty, TIOCNOTTY, 0);
534       close (tty);
535       signal (SIGTTOU, osigttou);
536     }
537 #endif
538
539   /* Now open the specified new terminal.  */
540
541 #ifdef USE_O_NOCTTY
542   tty = open (inferior_thisrun_terminal, O_RDWR | O_NOCTTY);
543 #else
544   tty = open (inferior_thisrun_terminal, O_RDWR);
545 #endif
546   if (tty == -1)
547     {
548       print_sys_errmsg (inferior_thisrun_terminal, errno);
549       _exit (1);
550     }
551
552   /* Avoid use of dup2; doesn't exist on all systems.  */
553   if (tty != 0)
554     {
555       close (0);
556       dup (tty);
557     }
558   if (tty != 1)
559     {
560       close (1);
561       dup (tty);
562     }
563   if (tty != 2)
564     {
565       close (2);
566       dup (tty);
567     }
568   if (tty > 2)
569     close (tty);
570 #endif /* !go32 && !win32 */
571 }
572 \f
573 /* Kill the inferior process.  Make us have no inferior.  */
574
575 /* ARGSUSED */
576 static void
577 kill_command (char *arg, int from_tty)
578 {
579   /* FIXME:  This should not really be inferior_ptid (or target_has_execution).
580      It should be a distinct flag that indicates that a target is active, cuz
581      some targets don't have processes! */
582
583   if (ptid_equal (inferior_ptid, null_ptid))
584     error ("The program is not being run.");
585   if (!query ("Kill the program being debugged? "))
586     error ("Not confirmed.");
587   target_kill ();
588
589   init_thread_list ();          /* Destroy thread info */
590
591   /* Killing off the inferior can leave us with a core file.  If so,
592      print the state we are left in.  */
593   if (target_has_stack)
594     {
595       printf_filtered ("In %s,\n", target_longname);
596       if (deprecated_selected_frame == NULL)
597         fputs_filtered ("No selected stack frame.\n", gdb_stdout);
598       else
599         print_stack_frame (deprecated_selected_frame,
600                            frame_relative_level (deprecated_selected_frame), 1);
601     }
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 */
608 static void
609 pass_signal (int signo)
610 {
611 #ifndef _WIN32
612   kill (PIDGET (inferior_ptid), SIGINT);
613 #endif
614 }
615
616 static void (*osig) ();
617
618 void
619 set_sigint_trap (void)
620 {
621   if (attach_flag || inferior_thisrun_terminal)
622     {
623       osig = (void (*)()) signal (SIGINT, pass_signal);
624     }
625 }
626
627 void
628 clear_sigint_trap (void)
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)
637 static void (*old_sigio) ();
638
639 static void
640 handle_sigio (int signo)
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) ())
654         kill (PIDGET (inferior_ptid), SIGINT);
655 #endif
656     }
657 }
658
659 static int old_fcntl_flags;
660
661 void
662 set_sigio_trap (void)
663 {
664   if (target_activity_function)
665     {
666       old_sigio = (void (*)()) signal (SIGIO, handle_sigio);
667       fcntl (target_activity_fd, F_SETOWN, getpid ());
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
673 void
674 clear_sigio_trap (void)
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.  */
683 void
684 set_sigio_trap (void)
685 {
686   if (target_activity_function)
687     internal_error (__FILE__, __LINE__, "failed internal consistency check");
688 }
689
690 void
691 clear_sigio_trap (void)
692 {
693   if (target_activity_function)
694     internal_error (__FILE__, __LINE__, "failed internal consistency check");
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).  */
708 int
709 gdb_setpgid (void)
710 {
711   int retval = 0;
712
713   if (job_control)
714     {
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
719          setpgid (getpid (), getpid ()) succeeds).  */
720       retval = setpgid (getpid (), getpid ());
721 #else
722 #ifdef HAVE_SETPGRP
723 #ifdef SETPGRP_VOID 
724       retval = setpgrp ();
725 #else
726       retval = setpgrp (getpid (), getpid ());
727 #endif
728 #endif /* HAVE_SETPGRP */
729 #endif /* HAVE_SETPGID */
730 #endif /* defined (HAVE_TERMIOS) || defined (TIOCGPGRP) */
731     }
732
733   return retval;
734 }
735
736 void
737 _initialize_inflow (void)
738 {
739   add_info ("terminal", term_info,
740             "Print inferior's saved terminal status.");
741
742   add_com ("kill", class_run, kill_command,
743            "Kill execution of program being debugged.");
744
745   inferior_ptid = null_ptid;
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
761   job_control = 0;              /* have to assume the worst */
762 #endif /* _SC_JOB_CONTROL */
763 #endif /* _POSIX_JOB_CONTROL */
764 #endif /* HAVE_TERMIOS */
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 }