summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/src/include/msvc.h
diff options
context:
space:
mode:
authorLuke Chen <luke.chen@mongodb.com>2019-08-01 10:34:36 +1000
committerLuke Chen <luke.chen@mongodb.com>2019-08-01 10:34:36 +1000
commit8a4b8b9fb7121417d33e8b1dd99f696c2f4fd765 (patch)
treec081094a03f66fa9d8fa29e31175e2e7f48c42f4 /src/third_party/wiredtiger/src/include/msvc.h
parent943da6c9cbf1b55b2bc7248d20f483bd5ff66bdf (diff)
downloadmongo-8a4b8b9fb7121417d33e8b1dd99f696c2f4fd765.tar.gz
Import wiredtiger: c29f4c6030e37794b8c2c1195829ba2d14954677 from branch mongodb-4.4
ref: 1055c64267..c29f4c6030 for: 4.3.1 WT-4858 Add compatibility support for gcc-9 and clang-8 WT-4917 Fix test/format where truncate operations not correctly compared with previous updates WT-4946 Tighten up failure checks for cursor join WT-4957 Revert part of a change about when pages are queued for urgent eviction WT-4963 Add debugging for rare test hang WT-5036 Fix test/format where tracking buffer wrap causes repeatable operation failure
Diffstat (limited to 'src/third_party/wiredtiger/src/include/msvc.h')
-rw-r--r--src/third_party/wiredtiger/src/include/msvc.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/third_party/wiredtiger/src/include/msvc.h b/src/third_party/wiredtiger/src/include/msvc.h
index 1586dae22b8..f4d8dc942f6 100644
--- a/src/third_party/wiredtiger/src/include/msvc.h
+++ b/src/third_party/wiredtiger/src/include/msvc.h
@@ -45,11 +45,6 @@ __wt_atomic_fetch_add##name(type *vp, type v) \
return (_InterlockedExchangeAdd ## s((t *)(vp), (t)(v))); \
} \
static inline ret \
-__wt_atomic_store##name(type *vp, type v) \
-{ \
- return (_InterlockedExchange ## s((t *)(vp), (t)(v))); \
-} \
-static inline ret \
__wt_atomic_sub##name(type *vp, type v) \
{ \
return (_InterlockedExchangeAdd ## s((t *)(vp), - (t)v) - (v)); \