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

123

/macosx-10.10.1/ksh-23/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.10.1/sudo-73/src/
H A Dsetsid.c37 if (setpgrp() == -1)
39 if (setpgrp(0, 0) == -1)
/macosx-10.10.1/Libc-1044.1.2/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.10.1/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.10.1/OpenSSH-189/openssh/openbsd-compat/
H A Dbsd-misc.h27 #define setsid() setpgrp(0, getpid())
/macosx-10.10.1/apr-32/apr/apr/threadproc/netware/
H A Dprocsup.c43 if (setpgrp(0, getpid()) == -1 || (pgrp = getpgrp(0)) == -1) {
/macosx-10.10.1/apr-32/apr/apr/threadproc/unix/
H A Dprocsup.c52 if (setpgrp(0, getpid()) == -1) {
/macosx-10.10.1/cron-39/lib/
H A Dcompat.c111 newpgrp = setpgrp(0, getpid());
119 newpgrp = setpgrp();
/macosx-10.10.1/zsh-61/zsh/Src/Modules/
H A Dclone.c65 setpgrp(0L, mypid);
/macosx-10.10.1/emacs-93/emacs/src/s/
H A Ddgux.h192 #define setpgrp(pid,pgrp) setpgrp2(pid,pgrp)
191 #define setpgrp macro
/macosx-10.10.1/Libc-1044.1.2/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.10.1/bind9-45.101/bind9/contrib/nslint-2.1a3/lbl/
H A Dos-sunos4.h148 int setpgrp(int, int);
/macosx-10.10.1/libpcap-48/libpcap/lbl/
H A Dos-sunos4.h148 int setpgrp(int, int);
/macosx-10.10.1/postfix-255/postfix/src/util/
H A Dsys_compat.c209 if (setpgrp(p, p))
/macosx-10.10.1/tcl-105/tcl_ext/expect/expect/
H A Dpty_sgttyb.c165 setpgrp(0,0);
/macosx-10.10.1/tcpdump-61/tcpdump/lbl/
H A Dos-sunos4.h148 int setpgrp(int, int);
/macosx-10.10.1/xnu-2782.1.97/bsd/man/man2/
H A DMakefile184 setpgrp.2 \
/macosx-10.10.1/emacs-93/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);
H A Demacs.c83 #undef setpgrp macro
84 #define setpgrp setpgid macro
1157 setpgrp (0, getpid ());
1161 setpgrp ();
/macosx-10.10.1/swig-12/Lib/perl5/
H A Dperlkw.swg192 PERLBN(setpgrp);
/macosx-10.10.1/OpenSSH-189/openssh/
H A Dsshpty.c157 if (setpgrp(0,0) < 0)
/macosx-10.10.1/ntp-92/ntpd/
H A Dntpd.c745 (void) setpgrp();
747 (void) setpgrp(0, getpid());
/macosx-10.10.1/ruby-106/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.10.1/tcsh-65/tcsh/
H A Dtc.os.h391 # define setpgid(pid, pgrp) setpgrp(pid, pgrp)
/macosx-10.10.1/tcsh-65/tcsh/win32/
H A Dntport.h157 #define setpgrp(a,b) (-1) macro

Completed in 172 milliseconds

123