| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007, 2008, 2010, 2012 Apple Inc. All rights reserved. | 2 * Copyright (C) 2007, 2008, 2010, 2012 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2007 Justin Haygood (jhaygood@reaktix.com) | 3 * Copyright (C) 2007 Justin Haygood (jhaygood@reaktix.com) |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * | 8 * |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | 23 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 24 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | 24 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
| 25 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 25 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 28 */ | 28 */ |
| 29 | 29 |
| 30 #ifndef Atomics_h | 30 #ifndef Atomics_h |
| 31 #define Atomics_h | 31 #define Atomics_h |
| 32 | 32 |
| 33 #include "wtf/CPU.h" | |
| 34 #include <stdint.h> | 33 #include <stdint.h> |
| 35 | 34 |
| 36 #if OS(WIN) | 35 #if OS(WIN) |
| 37 #include <windows.h> | 36 #include <windows.h> |
| 38 #elif OS(ANDROID) | 37 #elif OS(ANDROID) |
| 39 #include <sys/atomics.h> | 38 #include <sys/atomics.h> |
| 40 #endif | 39 #endif |
| 41 | 40 |
| 42 namespace WTF { | 41 namespace WTF { |
| 43 | 42 |
| (...skipping 20 matching lines...) Expand all Loading... |
| 64 ALWAYS_INLINE int64_t atomicDecrement(int64_t volatile* addend) { return __sync_
sub_and_fetch(addend, 1); } | 63 ALWAYS_INLINE int64_t atomicDecrement(int64_t volatile* addend) { return __sync_
sub_and_fetch(addend, 1); } |
| 65 | 64 |
| 66 #endif | 65 #endif |
| 67 | 66 |
| 68 } // namespace WTF | 67 } // namespace WTF |
| 69 | 68 |
| 70 using WTF::atomicDecrement; | 69 using WTF::atomicDecrement; |
| 71 using WTF::atomicIncrement; | 70 using WTF::atomicIncrement; |
| 72 | 71 |
| 73 #endif // Atomics_h | 72 #endif // Atomics_h |
| OLD | NEW |