diff options
Diffstat (limited to '3rdparty/asio/include/asio/detail/timer_scheduler_fwd.hpp')
-rw-r--r-- | 3rdparty/asio/include/asio/detail/timer_scheduler_fwd.hpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/3rdparty/asio/include/asio/detail/timer_scheduler_fwd.hpp b/3rdparty/asio/include/asio/detail/timer_scheduler_fwd.hpp index 15b5fbdffa1..bbb8a4e8ded 100644 --- a/3rdparty/asio/include/asio/detail/timer_scheduler_fwd.hpp +++ b/3rdparty/asio/include/asio/detail/timer_scheduler_fwd.hpp @@ -2,7 +2,7 @@ // detail/timer_scheduler_fwd.hpp // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ // -// Copyright (c) 2003-2021 Christopher M. Kohlhoff (chris at kohlhoff dot com) +// Copyright (c) 2003-2024 Christopher M. Kohlhoff (chris at kohlhoff dot com) // // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) @@ -24,6 +24,8 @@ namespace detail { typedef class winrt_timer_scheduler timer_scheduler; #elif defined(ASIO_HAS_IOCP) typedef class win_iocp_io_context timer_scheduler; +#elif defined(ASIO_HAS_IO_URING_AS_DEFAULT) +typedef class io_uring_service timer_scheduler; #elif defined(ASIO_HAS_EPOLL) typedef class epoll_reactor timer_scheduler; #elif defined(ASIO_HAS_KQUEUE) |