diff options
author | Max Romanov <max.romanov@nginx.com> | 2017-04-21 16:55:13 +0300 |
---|---|---|
committer | Max Romanov <max.romanov@nginx.com> | 2017-04-21 16:55:13 +0300 |
commit | cfed068c1d81d0ad0fe58885a0120529aa49630a (patch) | |
tree | d1d9c6f31341f13cac6bd60eda16f146512f4c2e /auto | |
parent | 6e7f98d6aed3047562656f86a5f9474d94d1894b (diff) | |
download | unit-cfed068c1d81d0ad0fe58885a0120529aa49630a.tar.gz unit-cfed068c1d81d0ad0fe58885a0120529aa49630a.tar.bz2 |
Macros for atomic 'OR' and 'AND' operations introduced.
Compiler built-ins used, where possible. Necessary configure checks added.
New macros:
nxt_atomic_or_fetch(ptr, val)
nxt_atomic_and_fetch(ptr, val)
Syntax and behaviour is similar to __sync_or_and_fetch and __sync_and_and_fetch
GCC build-ins.
Diffstat (limited to 'auto')
-rw-r--r-- | auto/atomic | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/auto/atomic b/auto/atomic index 6535bf74..31259fc5 100644 --- a/auto/atomic +++ b/auto/atomic @@ -21,6 +21,10 @@ nxt_feature_test="int main() { return 1; if (n != 5) return 1; + if (__sync_or_and_fetch(&n, 2) != 7) + return 1; + if (__sync_and_and_fetch(&n, 5) != 5) + return 1; __sync_lock_release(&n); if (n != 0) return 1; @@ -51,6 +55,10 @@ if [ $nxt_found = no ]; then return 1; if (n != 5) return 1; + if (atomic_or_ulong_nv(&n, 2) != 7) + return 1; + if (atomic_and_ulong_nv(&n, 5) != 5) + return 1; return 0; }" . auto/feature |