~ubuntu-branches/ubuntu/quantal/nginx/quantal-updates

« back to all changes in this revision

Viewing changes to src/os/unix/ngx_process.c

  • Committer: Bazaar Package Importer
  • Author(s): Kartik Mistry
  • Date: 2011-04-16 13:47:58 UTC
  • mfrom: (4.2.31 sid)
  • Revision ID: james.westby@ubuntu.com-20110416134758-yqca2qp5crh2hw2f
Tags: 1.0.0-2
* debian/rules:
  + Removed --with-file-aio support. Fixed FTBFS on kFreeBSD-* arch
    (Closes: #621882)

Show diffs side-by-side

added added

removed removed

Lines of Context:
479
479
             */
480
480
 
481
481
            if (err == NGX_ECHILD) {
482
 
                ngx_log_error(NGX_LOG_INFO, ngx_cycle->log, 0,
483
 
                              "waitpid() failed (%d: %s)",
484
 
                              err, ngx_sigsafe_strerror(err));
 
482
                ngx_log_error(NGX_LOG_INFO, ngx_cycle->log, err,
 
483
                              "waitpid() failed");
485
484
                return;
486
485
            }
487
486
 
488
487
#endif
489
488
 
490
 
            ngx_log_error(NGX_LOG_ALERT, ngx_cycle->log, 0,
491
 
                          "waitpid() failed (%d: %s)",
492
 
                          err, ngx_sigsafe_strerror(err));
 
489
            ngx_log_error(NGX_LOG_ALERT, ngx_cycle->log, err,
 
490
                          "waitpid() failed");
493
491
            return;
494
492
        }
495
493