From 8a4b8b9fb7121417d33e8b1dd99f696c2f4fd765 Mon Sep 17 00:00:00 2001 From: Luke Chen Date: Thu, 1 Aug 2019 10:34:36 +1000 Subject: 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 --- src/third_party/wiredtiger/src/include/msvc.h | 5 ----- 1 file changed, 5 deletions(-) (limited to 'src/third_party/wiredtiger/src/include/msvc.h') 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)); \ -- cgit v1.2.1