From a66d026470bac503d8c61b8bd0407e1b0393b9e4 Mon Sep 17 00:00:00 2001 From: Colin Patrick McCabe Date: Tue, 21 Jun 2011 16:16:09 -0700 Subject: [PATCH] CephContext: not copyable Signed-off-by: Colin McCabe --- src/common/ceph_context.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/common/ceph_context.h b/src/common/ceph_context.h index 95b452fcd43a5..0dbfb905543a7 100644 --- a/src/common/ceph_context.h +++ b/src/common/ceph_context.h @@ -65,6 +65,9 @@ public: ProfLoggerCollection *GetProfLoggerCollection(); private: + CephContext(const CephContext &rhs); + CephContext &operator=(const CephContext &rhs); + /* Stop and join the Ceph Context's service thread */ void join_service_thread(); -- 2.39.5