diff options
author | Vladimir Homutov <vl@nginx.com> | 2016-02-18 13:58:49 +0300 |
---|---|---|
committer | Vladimir Homutov <vl@nginx.com> | 2016-02-18 13:58:49 +0300 |
commit | faa96e82d273bec6cb8bdf37f78e038aecf7621a (patch) | |
tree | 205d92f8de5efb70b378703307f7a98d3c304e5e /src/os/win32/ngx_process.h | |
parent | b5d7d3f024f587682e320d891e52e693939a5f14 (diff) | |
download | nginx-faa96e82d273bec6cb8bdf37f78e038aecf7621a.tar.gz nginx-faa96e82d273bec6cb8bdf37f78e038aecf7621a.zip |
Core: added support for more than 64 CPUs in worker_cpu_affinity.
Diffstat (limited to 'src/os/win32/ngx_process.h')
-rw-r--r-- | src/os/win32/ngx_process.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/os/win32/ngx_process.h b/src/os/win32/ngx_process.h index 9246a9bfb..a6a5aa29f 100644 --- a/src/os/win32/ngx_process.h +++ b/src/os/win32/ngx_process.h @@ -21,6 +21,9 @@ typedef DWORD ngx_pid_t; (sizeof("ngx_cache_manager_mutex_") + NGX_INT32_LEN) +typedef uint64_t ngx_cpuset_t; + + typedef struct { HANDLE handle; ngx_pid_t pid; |