YACLib
C++ library for concurrent tasks execution
Loading...
Searching...
No Matches
recursive_mutex.hpp
Go to the documentation of this file.
1#pragma once
2
4
5namespace yaclib::detail {
6
7// Not using because maybe in future we will want different types
8template <typename Impl>
9class RecursiveMutex : public Mutex<Impl> {
10 using Base = Mutex<Impl>;
11
12 public:
13 using Base::Base;
14};
15
16} // namespace yaclib::detail