From a120d22f3eb76b9d128e423fbc83051c8a1b3bc7 Mon Sep 17 00:00:00 2001 From: Jason Chan Date: Mon, 15 Jul 2019 15:46:30 -0400 Subject: Initial commit; add isSync --- src/mongo/util/fail_point.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/mongo/util/fail_point.h b/src/mongo/util/fail_point.h index f82d85785a5..d535a5297a1 100644 --- a/src/mongo/util/fail_point.h +++ b/src/mongo/util/fail_point.h @@ -168,6 +168,8 @@ private: static const ValType ACTIVE_BIT = 1 << 31; static const ValType REF_COUNTER_MASK = ~ACTIVE_BIT; + bool _isSync; + // Bit layout: // 31: tells whether this fail point is active. // 0~30: unsigned ref counter for active dynamic instances. -- cgit v1.2.1