memgraph/include/logging/logs/sync_log.hpp

12 lines
215 B
C++
Raw Normal View History

#pragma once
#include "logging/log.hpp"
#include "threading/sync/lockable.hpp"
#include "threading/sync/futex.hpp"
class SyncLog : public Log, Lockable<Futex>
{
protected:
void emit(Record::uptr) override;
};