X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fceph%2Fsrc%2Fcommon%2FContextCompletion.h;fp=src%2Fceph%2Fsrc%2Fcommon%2FContextCompletion.h;h=0000000000000000000000000000000000000000;hb=7da45d65be36d36b880cc55c5036e96c24b53f00;hp=37d82337eb811fba29185c1a577f951598f402ec;hpb=691462d09d0987b47e112d6ee8740375df3c51b2;p=stor4nfv.git diff --git a/src/ceph/src/common/ContextCompletion.h b/src/ceph/src/common/ContextCompletion.h deleted file mode 100644 index 37d8233..0000000 --- a/src/ceph/src/common/ContextCompletion.h +++ /dev/null @@ -1,46 +0,0 @@ -// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- -// vim: ts=8 sw=2 smarttab -#ifndef CEPH_ASYNC_COMPLETION_H -#define CEPH_ASYNC_COMPLETION_H - -#include "include/Context.h" - -namespace ceph { - -class ContextCompletion { -public: - ContextCompletion(Context *ctx, bool ignore_enoent); - - void finish_adding_requests(); - - void start_op(); - void finish_op(int r); - -private: - Mutex m_lock; - Context *m_ctx; - bool m_ignore_enoent; - int m_ret; - bool m_building; - uint64_t m_current_ops; -}; - -class C_ContextCompletion : public Context { -public: - C_ContextCompletion(ContextCompletion &context_completion) - : m_context_completion(context_completion) - { - m_context_completion.start_op(); - } - - void finish(int r) override { - m_context_completion.finish_op(r); - } - -private: - ContextCompletion &m_context_completion; -}; - -} // namespace ceph - -#endif // CEPH_ASYNC_COMPLETION_H