Problem: epoll_t no longer requires _worker

Solution: Remove _worker
This commit is contained in:
Jacques Germishuys 2019-03-18 10:16:13 +00:00
parent 212ab4f834
commit 8a2296711d

View File

@ -103,9 +103,6 @@ class epoll_t : public worker_poller_base_t
typedef std::vector<poll_entry_t *> retired_t; typedef std::vector<poll_entry_t *> retired_t;
retired_t _retired; retired_t _retired;
// Handle of the physical thread doing the I/O work.
thread_t _worker;
epoll_t (const epoll_t &); epoll_t (const epoll_t &);
const epoll_t &operator= (const epoll_t &); const epoll_t &operator= (const epoll_t &);
}; };