Help for this page

Select Code to Download


  1. or download this
        rc = ap_os_create_privileged_process(r, procnew, command, argv, en
    +v,
                                             procattr, p);
    ...
                          "couldn't create child process: %d: %s", rc,
                          apr_filename_of_pathname(r->filename));
        }
    
  2. or download this
        if ((new->pid = fork()) < 0) {
            return errno;
        }
    
  3. or download this
    ERRORS
          If fork() fails, errno is set to one of the following values.
    ...
               [EAGAIN]       The system-imposed limit on the total number
    + of
                              processes under execution by a single user w
    +ould
                              be exceeded.