summaryrefslogtreecommitdiff
path: root/src/Socket.cc
diff options
context:
space:
mode:
authorPixel <pixel@nobis-crew.org>2011-11-29 01:21:48 -0800
committerPixel <pixel@nobis-crew.org>2011-11-29 01:21:48 -0800
commit64120be7af8d2ded76cd3a3401fc69cadb96351e (patch)
treec66c39790bfb086240f15f1ca77264fe6a44db05 /src/Socket.cc
parent07b2ec5910e103fc38daa55d0fd0e931b66f5626 (diff)
The TaskManager no longer waits on the pop(); instead it waits in the libev loop; also the Queue<> template changed for a naive but std-less implementation.
Diffstat (limited to 'src/Socket.cc')
-rw-r--r--src/Socket.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Socket.cc b/src/Socket.cc
index 3ca5494..af397a6 100644
--- a/src/Socket.cc
+++ b/src/Socket.cc
@@ -183,7 +183,7 @@ class ResolverThread : public Balau::Thread, public Balau::AtStart, public Balau
virtual void * proc();
virtual void doStart();
virtual void doExit();
- Balau::Queue<DNSRequest *> m_queue;
+ Balau::Queue<DNSRequest> m_queue;
};
void ResolverThread::doStart() {