*) Feature: the Clang compiler support.
*) Bugfix: extra listening sockets might be created.
Thanks to Roman Odaisky.
*) Bugfix: nginx/Windows might hog CPU if a worker process failed to
start.
Thanks to Ricardo Villalobos Guevara.
*) Bugfix: the "proxy_pass_header", "fastcgi_pass_header",
"scgi_pass_header", "uwsgi_pass_header", "proxy_hide_header",
"fastcgi_hide_header", "scgi_hide_header", and
“uwsgi_hide_header”
directives might be inherited incorrectly.
*) Bugfix: trailing dot in a source value was not ignored if the
“map”
directive was used with the “hostnames” parameter.
*) Bugfix: incorrect location might be used to process a request if
a
URI was changed via a “rewrite” directive before an internal
redirect
to a named location.
These versions are to support legacy users who are already using
Cygwin based builds of Nginx. Officially supported native Windows
binaries are at nginx.org.
Announcements are also available via my Twitter stream
(http://twitter.com/kworthington), if you prefer to receive updates
that way.
On Wed, Aug 08, 2012 at 12:41:36PM +0800, 姚伟斌 wrote:
CPU_SET(i, &mask);
In file included
from src/os/unix/ngx_setaffinity.c:7:
In file included from src/core/ngx_config.h:26:
In file included
from src/os/unix/ngx_linux_config.h:41:
In file included from /usr/include/sched.h:35:
Looks like valid warning for a glibc code, you may want to report
it to glibc folks. Nothing here we could do (and actually it’s
one of the reasons we’ve not enabled -Werror for Clang yet).
src/os/unix/ngx_setaffinity.c
src/os/unix/ngx_setaffinity.c:57:13: warning: expression result unused
[-Wunused-value]
CPU_SET(i, &mask);
^~~~~~~~~~~~~~~~~
In file included
from src/os/unix/ngx_setaffinity.c:7:
In file included from src/core/ngx_config.h:26:
In file included
from src/os/unix/ngx_linux_config.h:41:
/usr/include/sched.h:72:33: note: instantiated from:
# define
CPU_SET(cpu, cpusetp) __CPU_SET_S (cpu, sizeof (cpu_set_t), cpusetp)
^
In file included
from src/os/unix/ngx_setaffinity.c:7:
In file included from src/core/ngx_config.h:26:
In file included
from src/os/unix/ngx_linux_config.h:41:
In file included from /usr/include/sched.h:35: