~ubuntu-branches/ubuntu/utopic/nginx/utopic

« back to all changes in this revision

Viewing changes to src/os/unix/ngx_freebsd_config.h

  • Committer: Package Import Robot
  • Author(s): Robie Basak
  • Date: 2014-08-15 16:46:48 UTC
  • mfrom: (4.3.16 sid)
  • Revision ID: package-import@ubuntu.com-20140815164648-a5f0kta1qhtpw161
Tags: 1.6.1-1ubuntu1
* Merge from Debian. Remaining changes:
  - debian/patches/ubuntu-branding.patch: add Ubuntu branding
    (refreshed).
  - debian/rules: Drop from -O3 to -O2 to work around a build failure.
  - d/{control,rules,nginx-core.*}: add new binary package for main,
    nginx-core, which contains only source-tarball-included modules
    and no third-party modules.
* Add dep8 smoke test

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
#include <stddef.h>             /* offsetof() */
17
17
#include <stdio.h>
18
18
#include <stdlib.h>
 
19
#include <ctype.h>
19
20
#include <errno.h>
20
21
#include <string.h>
21
22
#include <signal.h>
94
95
#define NGX_LISTEN_BACKLOG        -1
95
96
 
96
97
 
 
98
#ifdef __DragonFly__
 
99
#define NGX_KEEPALIVE_FACTOR      1000
 
100
#endif
 
101
 
 
102
 
97
103
#if (__FreeBSD_version < 430000 || __FreeBSD_version < 500012)
98
104
 
99
105
pid_t rfork_thread(int flags, void *stack, int (*func)(void *arg), void *arg);