diff options
Diffstat (limited to 'src/mongo/s/interrupt_status_mongos.h')
| -rw-r--r-- | src/mongo/s/interrupt_status_mongos.h | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/src/mongo/s/interrupt_status_mongos.h b/src/mongo/s/interrupt_status_mongos.h new file mode 100644 index 00000000000..08bc2e427d5 --- /dev/null +++ b/src/mongo/s/interrupt_status_mongos.h @@ -0,0 +1,41 @@ +/** + * 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/>. + */ + +#pragma once + +#include "mongo/pch.h" +#include "db/interrupt_status.h" + +namespace mongo { + + class InterruptStatusMongos : + public InterruptStatus, + boost::noncopyable { + public: + // virtuals from InterruptStatus + virtual void checkForInterrupt(); + virtual const char *checkForInterruptNoAssert(); + + /* + Static singleton instance. + */ + static InterruptStatusMongos status; + + private: + InterruptStatusMongos(); + }; + +}; |
