Searched refs:setpgrp (Results 1 - 25 of 57) sorted by relevance

123

/macosx-10.9.5/ksh-20/ksh/src/lib/libast/comp/
H A Dsetpgid.c39 #define setpgrp setpgrp2
43 #define setpgrp BSDsetpgrp
52 extern int setpgrp(int, int);
54 extern int setpgrp(void);
65 return(setpgrp(pid, pgid));
71 return(setpgrp());
/macosx-10.9.5/sudo-72/src/
H A Dsetsid.c37 if (setpgrp() == -1)
39 if (setpgrp(0, 0) == -1)
/macosx-10.9.5/Libc-997.90.3/compat-43/FreeBSD/
H A Dsetpgrp.c31 static char sccsid[] = "@(#)setpgrp.c 8.1 (Berkeley) 6/2/93";
34 __FBSDID("$FreeBSD: src/lib/libc/compat-43/setpgrp.c,v 1.5 2007/01/09 00:27:49 imp Exp $");
41 setpgrp(void) function
/macosx-10.9.5/uucp-11/uucp/unix/
H A Ddetach.c159 /* If we don't have setsid, we must use setpgrp. On an old System V
160 system setpgrp will make us the leader of a new process group and
162 setpgrp (0, 0) will set our process group to 0 so that we can
166 if (setpgrp (0, 0) < 0)
168 if (setpgrp () < 0)
173 ulog (LOG_ERROR, "setpgrp: %s", strerror (errno));
/macosx-10.9.5/OpenSSH-186/openssh/openbsd-compat/
H A Dbsd-misc.h27 #define setsid() setpgrp(0, getpid())
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/threadproc/netware/
H A Dprocsup.c43 if (setpgrp(0, getpid()) == -1 || (pgrp = getpgrp(0)) == -1) {
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/threadproc/unix/
H A Dprocsup.c52 if (setpgrp(0, getpid()) == -1) {
/macosx-10.9.5/apr-30/apr/apr/threadproc/netware/
H A Dprocsup.c43 if (setpgrp(0, getpid()) == -1 || (pgrp = getpgrp(0)) == -1) {
/macosx-10.9.5/apr-30/apr/apr/threadproc/unix/
H A Dprocsup.c52 if (setpgrp(0, getpid()) == -1) {
/macosx-10.9.5/cron-39/lib/
H A Dcompat.c111 newpgrp = setpgrp(0, getpid());
119 newpgrp = setpgrp();
/macosx-10.9.5/zsh-60/zsh/Src/Modules/
H A Dclone.c65 setpgrp(0L, mypid);
/macosx-10.9.5/emacs-92/emacs/src/s/
H A Ddgux.h192 #define setpgrp(pid,pgrp) setpgrp2(pid,pgrp)
191 #define setpgrp macro
/macosx-10.9.5/Libc-997.90.3/include/
H A Dunistd.h702 pid_t setpgrp(void) __DARWIN_ALIAS(setpgrp); variable
705 pid_t setpgrp(void) LIBC_ALIAS(setpgrp); variable
709 int setpgrp(pid_t pid, pid_t pgrp); /* obsoleted by setpgid() */
/macosx-10.9.5/bind9-45.100/bind9/contrib/nslint-2.1a3/lbl/
H A Dos-sunos4.h148 int setpgrp(int, int);
/macosx-10.9.5/libpcap-42/libpcap/lbl/
H A Dos-sunos4.h148 int setpgrp(int, int);
/macosx-10.9.5/postfix-252/postfix/src/util/
H A Dsys_compat.c211 if (setpgrp(p, p))
/macosx-10.9.5/tcl-102/tcl_ext/expect/expect/
H A Dpty_sgttyb.c165 setpgrp(0,0);
/macosx-10.9.5/tcpdump-56/tcpdump/lbl/
H A Dos-sunos4.h148 int setpgrp(int, int);
/macosx-10.9.5/xnu-2422.115.4/bsd/man/man2/
H A DMakefile173 setpgrp.2 \
/macosx-10.9.5/emacs-92/emacs/src/
H A Dcallproc.c102 #undef setpgrp macro
103 #define setpgrp setpgid macro
652 setpgrp ();
654 setpgrp (pid, pid);
1383 setpgrp (); /* No arguments but equivalent in this case */
1386 setpgrp (pid, pid);
/macosx-10.9.5/swig-10/Lib/perl5/
H A Dperlkw.swg192 PERLBN(setpgrp);
/macosx-10.9.5/OpenSSH-186/openssh/
H A Dsshpty.c157 if (setpgrp(0,0) < 0)
/macosx-10.9.5/ntp-88/ntpd/
H A Dntpd.c690 (void) setpgrp();
692 (void) setpgrp(0, getpid());
/macosx-10.9.5/ruby-104/ruby/ext/pty/
H A Dpty.c105 if (setpgrp() == -1)
106 ERROR_EXIT("setpgrp()");
108 if (setpgrp(0, getpid()) == -1)
109 ERROR_EXIT("setpgrp()");
/macosx-10.9.5/cups-372.4/cups/scheduler/
H A Dprocess.c451 if (!RunUser && setpgrp())

Completed in 297 milliseconds

123