Searched refs:fork (Results 51 - 75 of 83) sorted by relevance

1234

/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Time/HiRes/t/
H A DHiRes.t41 if (defined ($pid = fork())) {
52 warn "$0: fork failed: $!\n";
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Pod/t/
H A DFunctions.t56 skip( "Can't fork '$^X': $!", 1)
126 alarm, exec, fork, getpgrp, getppid, getpriority, kill,
/osnet-11/usr/src/lib/libast/common/sfio/
H A Dsfhdr.h471 #if _lib_vfork && !defined(fork) && !defined(sparc) && !defined(__sparc)
478 #define fork vfork macro
1259 #if !defined(fork)
1260 extern int fork _ARG_((void));
H A Dsfpopen.c210 switch((pid = fork()) )
/osnet-11/usr/src/cmd/hal/hald/
H A Dhald.c462 /* will fork into two; only the child will return here if we are successful */
491 child_pid = fork ();
494 fprintf (stderr, "Cannot fork(): %s\n", strerror(errno));
/osnet-11/usr/src/lib/libbsm/common/
H A Daudit_plugin.c117 LOG_DAEMON, LOG_ALERT, "audit_warn fork failed");
184 if ((pid = fork()) == -1) {
186 LOG_DAEMON, LOG_ALERT, "audit_warn fork failed");
/osnet-11/usr/src/lib/libc/port/gen/
H A Dsyslog.c80 #include <sys/fork.h>
147 * malloc() when fork() is occurring concurrently, perhaps with
402 * fork here.
/osnet-11/usr/src/lib/libast/common/misc/
H A Dprocopen.c388 * fork and exec or spawn proc(argv) and return a Proc_t handle
536 proc->pid = fork();
580 if (!(proc->pid = fork()))
598 if (!fork())
/osnet-11/usr/src/lib/libc/port/threads/
H A Dscalls.c43 #pragma weak _fork = fork
88 * serialize calls to fork() and forkall(), but it also serializes calls
89 * to thr_suspend() and thr_continue() (because fork() and forkall() also
93 * call malloc() and free(). Such calls are not fork-safe when protected
100 * Within libc, calls to malloc() and free() are fork-safe if the calls
155 * We are a child of vfork(); omit all of the fork
158 * must never call fork().
175 * Cannot call fork() from a fork handler.
188 * If one of these pthread_atfork() functions attempts to fork
274 fork(void) function
[all...]
H A Dspawn.c30 #include <sys/fork.h>
/osnet-11/usr/src/lib/libvolmgt/common/
H A Dvolmgt_on_private.c578 if ((pid = fork()) < 0) {
/osnet-11/usr/src/lib/lvm/libmeta/common/
H A Dmeta_setup.c422 /* fork and kill parent */
423 if ((pid = fork()) == -1)
424 return (mdsyserror(ep, errno, "fork"));
H A Dmeta_trans.c1503 switch (pid = fork()) {
1511 (void) printf(dgettext(TEXT_DOMAIN, "failed to fork lockfs\n"));
/osnet-11/usr/src/lib/libparted/common/libparted/fs/hfs/
H A Dhfs.h258 uint8_t type; /* data or ressource fork */
388 /* HFS+ fork data structure */
634 HfsPForkData fork; member in union:_HfsPForkDataAttr::__anon2239
H A Dreloc_plus.c776 extent = fork_ext_data->fork_res.fork.extents;
/osnet-11/usr/src/lib/fm/libfmnotify/common/
H A Dlibfmnotify.c119 if ((pid = fork()) < 0)
120 nd_abort(nhdl, "Failed to fork child (%s)", strerror(errno));
/osnet-11/usr/src/cmd/sendmail/include/sm/
H A Dconf.h1385 # define FORK fork /* SecureWare wants the real fork! */
1857 # define USE_DOUBLE_FORK 0 /* don't fork an intermediate zombie */
2929 /* fork routine -- set above using #ifdef _osname_ or in Makefile */
2931 # define FORK fork /* function to call to fork mailer */
/osnet-11/usr/src/cmd/sendmail/src/
H A Ddeliver.c544 ** If we belong in background, fork now.
607 /* arrange to reacquire lock after fork */
636 pid = fork();
639 syserr("deliver: fork 1");
701 /* double fork to avoid zombies */
702 pid = fork();
718 syserr("deliver: fork 2");
1050 ** DOFORK -- do a fork, retrying a couple of times on failure.
1074 # define FORK fork
1091 ** DOFORK -- simple fork interfac
[all...]
H A Dmain.c2191 ** extra fork().
2194 if (Verbose || foregroundqueue || (pid = fork()) <= 0)
2197 ** If the fork() failed we should still try to do
2325 i = fork();
2327 syserr("daemon: cannot fork");
H A Dqueue.c1418 ** a child process. We double-fork so it is not our
1644 ** didfork -- did the calling process fork()?
1939 const char *msg = "Skipping queue run -- fork() failed";
2137 ** For this WorkQ we want to fork off N children (maxrunners)
2172 pid = fork();
2175 syserr("run_work_group: cannot fork");
2214 ** When fork()'d the child now has a private
2278 ** When current process will not fork children to do the work,
3576 pid = fork();
3579 syserr("dowork: cannot fork");
[all...]
/osnet-11/usr/src/lib/libshell/common/sh/
H A Dpath.c49 # define vfork() fork()
1169 if((pid=fork())>0)
/osnet-11/usr/src/lib/libnisdb/yptol/
H A Dshim_changepasswd.c483 * If it all worked fork off push operations for the maps. Since we
492 if (fork() == 0) {
/osnet-11/usr/src/cmd/sendmail/aux/
H A Dvacation.c800 i = fork();
802 usrerr("fork() failed");
/osnet-11/usr/src/grub/grub2/util/
H A Dgetroot.c1109 mdadm_pid = fork ();
1111 grub_util_warn (_("Unable to fork mdadm: %s"), strerror (errno));
/osnet-11/usr/src/lib/libpp/common/
H A Dpplex.c2414 switch (fork())
2417 error(ERROR_SYSTEM|3, "cannot fork pool");

Completed in 111 milliseconds

1234