IOThread: remove unused Cond variable

This commit is contained in:
Max Kellermann 2017-02-10 21:29:42 +01:00
parent cfd056231b
commit 42f1e26540

View File

@ -20,7 +20,6 @@
#include "config.h" #include "config.h"
#include "IOThread.hxx" #include "IOThread.hxx"
#include "thread/Mutex.hxx" #include "thread/Mutex.hxx"
#include "thread/Cond.hxx"
#include "thread/Thread.hxx" #include "thread/Thread.hxx"
#include "thread/Name.hxx" #include "thread/Name.hxx"
#include "event/Loop.hxx" #include "event/Loop.hxx"
@ -29,7 +28,6 @@
static struct { static struct {
Mutex mutex; Mutex mutex;
Cond cond;
EventLoop *loop; EventLoop *loop;
Thread thread; Thread thread;