Welcome to mirror list, hosted at ThFree Co, Russian Federation.

threads « auto - github.com/nginx/nginx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0c5fd5699cc736a03c0c385060ac14635b2e55a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13

if [ $USE_THREADS = "rfork" ]; then

    have=NGX_THREADS . auto/have
    have=NGX_USE_RFORK . auto/have
    CORE_DEPS="$CORE_DEPS $UNIX_THREADS_DEPS"
    CORE_SRCS="$CORE_SRCS $FREEBSD_RFORK_SRCS"

    if [ $version -lt 501000 ]; then
        CORE_SRCS="$CORE_SRCS $FREEBSD_RFORK_THREAD_SRCS"
    fi

fi