1 | class cpp_test_spinlock { |
---|
2 | volatile bool lockBool = 0; |
---|
3 | |
---|
4 | public: |
---|
5 | inline void lock() { |
---|
6 | for ( ;; ) { |
---|
7 | if ( (this->lockBool == 0) && (__atomic_test_and_set( &this->lockBool, __ATOMIC_ACQUIRE ) == 0) ) break; |
---|
8 | } |
---|
9 | } |
---|
10 | |
---|
11 | inline bool try_lock() { |
---|
12 | return (this->lockBool == 0) && (__atomic_test_and_set( &this->lockBool, __ATOMIC_ACQUIRE ) == 0); |
---|
13 | } |
---|
14 | |
---|
15 | inline void unlock() { |
---|
16 | __atomic_clear( &this->lockBool, __ATOMIC_RELEASE ); |
---|
17 | } |
---|
18 | }; |
---|
19 | |
---|
20 | inline void lock( cpp_test_spinlock &a, cpp_test_spinlock &b ) { |
---|
21 | a.lock(); b.lock(); |
---|
22 | } |
---|
23 | inline void lock( cpp_test_spinlock &a, cpp_test_spinlock &b, cpp_test_spinlock &c, cpp_test_spinlock &d ) { |
---|
24 | a.lock(); b.lock(); c.lock(); d.lock(); |
---|
25 | } |
---|
26 | inline void lock( cpp_test_spinlock &a, cpp_test_spinlock &b, cpp_test_spinlock &c, cpp_test_spinlock &d, cpp_test_spinlock &e, cpp_test_spinlock &f, cpp_test_spinlock &g, cpp_test_spinlock &h ) { |
---|
27 | a.lock(); b.lock(); c.lock(); d.lock(); e.lock(); f.lock(); g.lock(); h.lock(); |
---|
28 | } |
---|
29 | inline void unlock( cpp_test_spinlock &a, cpp_test_spinlock &b ) { |
---|
30 | a.unlock(); b.unlock(); |
---|
31 | } |
---|
32 | inline void unlock( cpp_test_spinlock &a, cpp_test_spinlock &b, cpp_test_spinlock &c, cpp_test_spinlock &d ) { |
---|
33 | a.unlock(); b.unlock(); c.unlock(); d.unlock(); |
---|
34 | } |
---|
35 | inline void unlock( cpp_test_spinlock &a, cpp_test_spinlock &b, cpp_test_spinlock &c, cpp_test_spinlock &d, cpp_test_spinlock &e, cpp_test_spinlock &f, cpp_test_spinlock &g, cpp_test_spinlock &h ) { |
---|
36 | a.unlock(); b.unlock(); c.unlock(); d.unlock(); e.unlock(); f.unlock(); g.unlock(); h.unlock(); |
---|
37 | } |
---|