mirror of
https://github.com/dashpay/dash.git
synced 2024-12-25 03:52:49 +01:00
partial Merge #19090: refactor: Misc scheduler cleanups
backports bitcoin@fab2950 doc: Switch boost::thread to std::thread in scheduler After commit d0ebd93 the scheduler itself no longer cares if the serviceQueue is run in a std::thread or boost::thread. Change the documentation to std::thread because we switched to C++11.
This commit is contained in:
parent
9b8884b430
commit
c37e1ae5e7
@ -5,11 +5,6 @@
|
||||
#ifndef BITCOIN_SCHEDULER_H
|
||||
#define BITCOIN_SCHEDULER_H
|
||||
|
||||
//
|
||||
// NOTE:
|
||||
// boost::thread should be ported to std::thread
|
||||
// when we support C++11.
|
||||
//
|
||||
#include <condition_variable>
|
||||
#include <functional>
|
||||
#include <list>
|
||||
@ -26,7 +21,7 @@
|
||||
// CScheduler* s = new CScheduler();
|
||||
// s->scheduleFromNow(doSomething, 11); // Assuming a: void doSomething() { }
|
||||
// s->scheduleFromNow(std::bind(Class::func, this, argument), 3);
|
||||
// boost::thread* t = new boost::thread(std::bind(CScheduler::serviceQueue, s));
|
||||
// std::thread* t = new std::thread([&] { s->serviceQueue(); });
|
||||
//
|
||||
// ... then at program shutdown, make sure to call stop() to clean up the thread(s) running serviceQueue:
|
||||
// s->stop();
|
||||
|
Loading…
Reference in New Issue
Block a user