comparison src/callproc.c @ 3814:52d398035be7

* m/iris4d.h (LIB_STANDARD): Do *not* include -lbsd. We are now calling the BSD[sg]etpgrp functions directly, so this library is not needed; it just provides the BSD[sg]etpgrp functions under the [sg]etpgrp names. * callproc.c [IRIX] (child_setup): Don't call setpgrp this time. It's already been called up in Fcall_process, and create_process.
author Jim Blandy <jimb@redhat.com>
date Thu, 17 Jun 1993 23:25:37 +0000
parents 87d9ef5f831b
children 647bef18618f
comparison
equal deleted inserted replaced
3813:5c622d3241b5 3814:52d398035be7
517 dup2 (err, 2); 517 dup2 (err, 2);
518 close (in); 518 close (in);
519 close (out); 519 close (out);
520 close (err); 520 close (err);
521 521
522 #if defined (USG) && !defined (IRIX) 522 #if !defined (IRIX)
523 #if defined (USG)
523 setpgrp (); /* No arguments but equivalent in this case */ 524 setpgrp (); /* No arguments but equivalent in this case */
524 #else 525 #else
525 setpgrp (pid, pid); 526 setpgrp (pid, pid);
526 #endif /* USG */ 527 #endif /* USG */
528 #endif /* IRIX */
527 setpgrp_of_tty (pid); 529 setpgrp_of_tty (pid);
528 530
529 #ifdef vipc 531 #ifdef vipc
530 something missing here; 532 something missing here;
531 #endif /* vipc */ 533 #endif /* vipc */