diff options
Diffstat (limited to 'www/nginx-devel/files/patch-src-os-unix-ngx_atomic.h')
-rw-r--r-- | www/nginx-devel/files/patch-src-os-unix-ngx_atomic.h | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/www/nginx-devel/files/patch-src-os-unix-ngx_atomic.h b/www/nginx-devel/files/patch-src-os-unix-ngx_atomic.h deleted file mode 100644 index 6dc60f5f5515..000000000000 --- a/www/nginx-devel/files/patch-src-os-unix-ngx_atomic.h +++ /dev/null @@ -1,22 +0,0 @@ ---- src/os/unix/ngx_atomic.h.orig Wed Oct 26 11:17:58 2005 -+++ src/os/unix/ngx_atomic.h Wed Oct 26 11:18:36 2005 -@@ -154,7 +154,7 @@ - ngx_atomic_cmp_set(ngx_atomic_t *lock, ngx_atomic_uint_t old, - ngx_atomic_uint_t set) - { -- if (*lock == old { -+ if (*lock == old) { - *lock = set; - return 1; - } -@@ -174,8 +174,9 @@ - return old; - } - --#endif -+#define ngx_memory_barrier() - -+#endif - - void ngx_spinlock(ngx_atomic_t *lock, ngx_uint_t spin); - |