Browse Source

Import: module 'call_with_lock' from libpEpAdapter

pull/1/head
heck 3 years ago
parent
commit
e4bac9b003
  1. 8
      src/call_with_lock.cc
  2. 26
      src/call_with_lock.hh

8
src/call_with_lock.cc

@ -0,0 +1,8 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
#include "call_with_lock.hh"
namespace pEp {
std::mutex call_with_lock_mutex;
}

26
src/call_with_lock.hh

@ -0,0 +1,26 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
#ifndef LIBPEPADAPTER_CALL_WITH_LOCK_HH
#define LIBPEPADAPTER_CALL_WITH_LOCK_HH
#include <mutex>
namespace pEp {
extern std::mutex call_with_lock_mutex;
// TODO: use && and std::forward<> to avoid copying of the arguments.
// It is not relevant, yet, because at the moment we use this function
// template only for init() and release() which have cheap-to-copy pointer
// parameters only
template<class R, class... Args>
R call_with_lock(R (*fn)(Args...), Args... args)
{
std::lock_guard<std::mutex> L(call_with_lock_mutex);
return fn(args...);
}
} // namespace pEp
#endif // LIBPEPADAPTER_CALL_WITH_LOCK_HH
Loading…
Cancel
Save