Skip to content

Instantly share code, notes, and snippets.

@TheComputerGenie
Last active May 17, 2020 16:45
Show Gist options
  • Save TheComputerGenie/2ac8cf277493c9f6face6f53717574ee to your computer and use it in GitHub Desktop.
Save TheComputerGenie/2ac8cf277493c9f6face6f53717574ee to your computer and use it in GitHub Desktop.
Berkeley DB 4.8 patch
--- dbinc/atomic.h 2013-03-12 14:07:22.000000000 -0400
+++ dbinc/atomic.h.change 2013-03-12 14:06:35.000000000 -0400
@@ -144,7 +144,7 @@
#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 @@
* 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;
@TheComputerGenie
Copy link
Author

cd db-4.8.30.NC

get --quiet https://gist.githubusercontent.com/TheComputerGenie/2ac8cf277493c9f6face6f53717574ee/raw/cc8ab944230e30ed93be1b48f240a27ea5d10988/atomic.patch

git apply atomic.patch

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment