event/Loop: use IntrusiveList instead of boost::intrusive::list
This commit is contained in:
parent
1da8faa285
commit
b3c5e6a3cc
@ -21,8 +21,7 @@
|
||||
#define MPD_INJECT_EVENT_HXX
|
||||
|
||||
#include "util/BindMethod.hxx"
|
||||
|
||||
#include <boost/intrusive/list_hook.hpp>
|
||||
#include "util/IntrusiveList.hxx"
|
||||
|
||||
class EventLoop;
|
||||
|
||||
@ -31,8 +30,7 @@ class EventLoop;
|
||||
*
|
||||
* This class is thread-safe.
|
||||
*/
|
||||
class InjectEvent final
|
||||
: public boost::intrusive::list_base_hook<>
|
||||
class InjectEvent final : public SafeLinkIntrusiveListHook
|
||||
{
|
||||
friend class EventLoop;
|
||||
|
||||
|
@ -33,8 +33,6 @@
|
||||
#include "WakeFD.hxx"
|
||||
#include "thread/Id.hxx"
|
||||
#include "thread/Mutex.hxx"
|
||||
|
||||
#include <boost/intrusive/list.hpp>
|
||||
#endif
|
||||
|
||||
#include <atomic>
|
||||
@ -80,10 +78,7 @@ class EventLoop final
|
||||
#ifdef HAVE_THREADED_EVENT_LOOP
|
||||
Mutex mutex;
|
||||
|
||||
using InjectList =
|
||||
boost::intrusive::list<InjectEvent,
|
||||
boost::intrusive::base_hook<boost::intrusive::list_base_hook<>>,
|
||||
boost::intrusive::constant_time_size<false>>;
|
||||
using InjectList = IntrusiveList<InjectEvent>;
|
||||
InjectList inject;
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user