Merge pull request #1651
fc91e6a7
Fixed a deadlock issue with easylogger++ (NanoAkron)
This commit is contained in:
commit
345396e056
|
@ -1104,8 +1104,8 @@ namespace el {
|
|||
ELPP_UNUSED(ms);
|
||||
# endif // ELPP_ASYNC_LOGGING
|
||||
}
|
||||
typedef std::mutex Mutex;
|
||||
typedef std::lock_guard<std::mutex> ScopedLock;
|
||||
typedef std::recursive_mutex Mutex;
|
||||
typedef std::lock_guard<std::recursive_mutex> ScopedLock;
|
||||
# endif // !ELPP_USE_STD_THREADING
|
||||
#else
|
||||
namespace internal {
|
||||
|
|
Loading…
Reference in New Issue