summaryrefslogtreecommitdiff
path: root/src/mongo/util/fail_point_service.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/util/fail_point_service.cpp')
-rw-r--r--src/mongo/util/fail_point_service.cpp37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/mongo/util/fail_point_service.cpp b/src/mongo/util/fail_point_service.cpp
new file mode 100644
index 00000000000..b474810ddaf
--- /dev/null
+++ b/src/mongo/util/fail_point_service.cpp
@@ -0,0 +1,37 @@
+/*
+ * Copyright (C) 2012 10gen Inc.
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License, version 3,
+ * as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#include "mongo/util/fail_point_service.h"
+
+namespace mongo {
+ MONGO_FP_DECLARE(dummy); // used by jstests/libs/fail_point.js
+
+ scoped_ptr<FailPointRegistry> _fpRegistry(NULL);
+
+ MONGO_INITIALIZER(FailPointRegistry)(InitializerContext* context) {
+ _fpRegistry.reset(new FailPointRegistry());
+ return Status::OK();
+ }
+
+ MONGO_INITIALIZER_GENERAL(AllFailPointsRegistered, (), ())(InitializerContext* context) {
+ _fpRegistry->freeze();
+ return Status::OK();
+ }
+
+ FailPointRegistry* getGlobalFailPointRegistry() {
+ return _fpRegistry.get();
+ }
+}