Drop the AGPL license in favor of a source-available license. See the blog post [1] for details. [1] https://www.scylladb.com/2024/12/18/why-were-moving-to-a-source-available-license/
20 lines
596 B
C++
20 lines
596 B
C++
/*
|
|
* Copyright (C) 2017-present ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* SPDX-License-Identifier: LicenseRef-ScyllaDB-Source-Available-1.0
|
|
*/
|
|
|
|
#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();
|
|
}
|