diff options
author | David Tardon <dtardon@redhat.com> | 2011-06-22 13:03:24 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2011-06-22 13:04:33 +0200 |
commit | 432c014c2773a2cc87fc58d5870b53f5854f3393 (patch) | |
tree | a8b69dfbd41d6dd16d62824e20781994b35b628e | |
parent | c791eff9e47023d5f3919969722cd1db6fec4243 (diff) |
remove duplicate code
-rw-r--r-- | sal/osl/unx/interlck.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/sal/osl/unx/interlck.c b/sal/osl/unx/interlck.c index e5bb3ea1e..a32f67c11 100644 --- a/sal/osl/unx/interlck.c +++ b/sal/osl/unx/interlck.c @@ -149,17 +149,6 @@ oslInterlockedCount SAL_CALL osl_decrementInterlockedCount(oslInterlockedCount* return --nCount; #endif } - -#elif ( __GNUC__ > 4 ) || (( __GNUC__ == 4) && ( __GNUC_MINOR__ >= 4 )) -oslInterlockedCount SAL_CALL osl_incrementInterlockedCount(oslInterlockedCount* pCount) -{ - return __sync_add_and_fetch(pCount, 1); -} - -oslInterlockedCount SAL_CALL osl_decrementInterlockedCount(oslInterlockedCount* pCount) -{ - return __sync_sub_and_fetch(pCount, 1); -} #elif ( __GNUC__ > 4 ) || (( __GNUC__ == 4) && ( __GNUC_MINOR__ >= 4 )) oslInterlockedCount SAL_CALL osl_incrementInterlockedCount(oslInterlockedCount* pCount) { |