summaryrefslogtreecommitdiff
path: root/devel/sourcenav/files/patch-db4_dbinc_atomic.h
diff options
context:
space:
mode:
Diffstat (limited to 'devel/sourcenav/files/patch-db4_dbinc_atomic.h')
-rw-r--r--devel/sourcenav/files/patch-db4_dbinc_atomic.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/devel/sourcenav/files/patch-db4_dbinc_atomic.h b/devel/sourcenav/files/patch-db4_dbinc_atomic.h
deleted file mode 100644
index a46116fe18f5..000000000000
--- a/devel/sourcenav/files/patch-db4_dbinc_atomic.h
+++ /dev/null
@@ -1,20 +0,0 @@
---- db4/dbinc/atomic.h.orig 2010-10-28 20:58:58 UTC
-+++ db4/dbinc/atomic.h
-@@ -144,7 +144,7 @@ typedef LONG volatile *interlocked_val;
- #define atomic_inc(env, p) __atomic_inc(p)
- #define atomic_dec(env, p) __atomic_dec(p)
- #define atomic_compare_exchange(env, p, o, n) \
-- __atomic_compare_exchange((p), (o), (n))
-+ __atomic_compare_exchange_db((p), (o), (n))
- static inline int __atomic_inc(db_atomic_t *p)
- {
- int temp;
-@@ -176,7 +176,7 @@ static inline int __atomic_dec(db_atomic_t *p)
- * http://gcc.gnu.org/onlinedocs/gcc-4.1.0/gcc/Atomic-Builtins.html
- * which configure could be changed to use.
- */
--static inline int __atomic_compare_exchange(
-+static inline int __atomic_compare_exchange_db(
- db_atomic_t *p, atomic_value_t oldval, atomic_value_t newval)
- {
- atomic_value_t was;