mirror of
https://git.freebsd.org/ports.git
synced 2025-06-09 06:40:33 -04:00
Fix build following a4245a4c6c
.
Obtained from: upstream 81edc181f8 - Update asiolink for boost 1.87
35 lines
1.2 KiB
C++
35 lines
1.2 KiB
C++
--- src/lib/asiolink/io_service.cc.orig 2024-07-25 08:50:58 UTC
|
|
+++ src/lib/asiolink/io_service.cc
|
|
@@ -30,7 +30,7 @@ class IOServiceImpl { (public)
|
|
/// @brief The constructor.
|
|
IOServiceImpl() :
|
|
io_service_(),
|
|
- work_(new boost::asio::io_service::work(io_service_)) {
|
|
+ work_(boost::asio::make_work_guard(io_service_)) {
|
|
};
|
|
|
|
/// @brief The destructor.
|
|
@@ -92,7 +92,7 @@ class IOServiceImpl { (public)
|
|
|
|
/// @brief Restarts the IOService in preparation for a subsequent @ref run() invocation.
|
|
void restart() {
|
|
- io_service_.reset();
|
|
+ io_service_.restart();
|
|
}
|
|
|
|
/// @brief Removes IO service work object to let it finish running
|
|
@@ -115,12 +115,12 @@ class IOServiceImpl { (public)
|
|
///
|
|
/// @param callback The callback to be run on the IO service.
|
|
void post(const std::function<void ()>& callback) {
|
|
- io_service_.post(callback);
|
|
+ boost::asio::post(io_service_, callback);
|
|
}
|
|
|
|
private:
|
|
boost::asio::io_service io_service_;
|
|
- boost::shared_ptr<boost::asio::io_service::work> work_;
|
|
+ boost::asio::executor_work_guard<boost::asio::io_service::executor_type> work_;
|
|
};
|
|
|
|
IOService::IOService() : io_impl_(new IOServiceImpl()) {
|