You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lokinet/llarp/ev/ev.cpp

20 lines
345 B
C++

#include "ev.hpp"
#include <llarp/util/mem.hpp>
#include <llarp/util/str.hpp>
#include <cstddef>
#include <cstring>
#include <string_view>
// We libuv now
#include "ev_libuv.hpp"
namespace llarp
{
EventLoop_ptr
EventLoop::create(size_t queueLength)
{
return std::make_shared<llarp::uv::Loop>(queueLength);
}
} // namespace llarp