comparison src/core/ngx_string.h @ 620:b4dcae568a2a NGINX_1_0_0

nginx 1.0.0 *) Bugfix: a cache manager might hog CPU after reload. Thanks to Maxim Dounin. *) Bugfix: an "image_filter crop" directive worked incorrectly coupled with an "image_filter rotate 180" directive. *) Bugfix: a "satisfy any" directive disabled custom 401 error page.
author Igor Sysoev <http://sysoev.ru>
date Tue, 12 Apr 2011 00:00:00 +0400
parents 6c96fdd2dfc3
children 6f21ae02fb01
comparison
equal deleted inserted replaced
619:c4e0de226b0b 620:b4dcae568a2a
131 #else 131 #else
132 132
133 #define ngx_copy ngx_cpymem 133 #define ngx_copy ngx_cpymem
134 134
135 #endif 135 #endif
136
137
138 #define ngx_memmove(dst, src, n) (void) memmove(dst, src, n)
139 #define ngx_movemem(dst, src, n) (((u_char *) memmove(dst, src, n)) + (n))
136 140
137 141
138 /* msvc and icc7 compile memcmp() to the inline loop */ 142 /* msvc and icc7 compile memcmp() to the inline loop */
139 #define ngx_memcmp(s1, s2, n) memcmp((const char *) s1, (const char *) s2, n) 143 #define ngx_memcmp(s1, s2, n) memcmp((const char *) s1, (const char *) s2, n)
140 144