mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-09 13:10:25 +00:00
f9db26adee
run make format
12 lines
314 B
C++
12 lines
314 B
C++
#ifndef LLARP_THREADING_HPP
|
|
#define LLARP_THREADING_HPP
|
|
#include <mutex>
|
|
#if defined(__MINGW32__)
|
|
#include <llarp/win32/threads/mingw.condition_variable.h>
|
|
#include <llarp/win32/threads/mingw.mutex.h>
|
|
#include <llarp/win32/threads/mingw.thread.h>
|
|
#else
|
|
#include <condition_variable>
|
|
#include <thread>
|
|
#endif
|
|
#endif |