We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07c917f commit f52d08cCopy full SHA for f52d08c
src/mp/proxy.cpp
@@ -156,9 +156,9 @@ void Connection::addAsyncCleanup(std::function<void()> fn)
156
EventLoop::EventLoop(const char* exe_name, LogFn log_fn, void* context)
157
: m_exe_name(exe_name),
158
m_io_context(kj::setupAsyncIo()),
159
+ m_task_set(new kj::TaskSet(m_error_handler)),
160
m_log_fn(std::move(log_fn)),
- m_context(context),
161
- m_task_set(new kj::TaskSet(m_error_handler))
+ m_context(context)
162
{
163
int fds[2];
164
KJ_SYSCALL(socketpair(AF_UNIX, SOCK_STREAM, 0, fds));
0 commit comments