fix: json thread safe

This commit is contained in:
Alex
2019-05-02 14:24:37 +02:00
parent e6d59f05cc
commit d027243a19
2 changed files with 2 additions and 0 deletions

View File

@ -44,6 +44,7 @@ class Ipc {
int fd_event_;
std::mutex mutex_;
std::mutex mutex_event_;
std::mutex mutex_parser_;
util::JsonParser parser_;
};