these unused includes were identified by clangd. see https://clangd.llvm.org/guides/include-cleaner#unused-include-warning for more details on the "Unused include" warning. Signed-off-by: Kefu Chai <kefu.chai@scylladb.com> Closes scylladb/scylladb#16664
20 lines
573 B
C++
20 lines
573 B
C++
/*
|
|
* Copyright (C) 2017-present ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <seastar/core/lowres_clock.hh>
|
|
#include <seastar/core/semaphore.hh>
|
|
|
|
namespace db {
|
|
using timeout_clock = seastar::lowres_clock;
|
|
using timeout_semaphore = seastar::basic_semaphore<seastar::default_timeout_exception_factory, timeout_clock>;
|
|
using timeout_semaphore_units = seastar::semaphore_units<seastar::default_timeout_exception_factory, timeout_clock>;
|
|
static constexpr timeout_clock::time_point no_timeout = timeout_clock::time_point::max();
|
|
}
|