mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-19 16:15:07 +00:00
25 lines
422 B
C++
25 lines
422 B
C++
/*
|
|
* Copyright (C) 2015-present ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* SPDX-License-Identifier: LicenseRef-ScyllaDB-Source-Available-1.1
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <seastar/core/sharded.hh>
|
|
|
|
namespace replica {
|
|
class database;
|
|
}
|
|
|
|
namespace debug {
|
|
|
|
extern seastar::sharded<replica::database>* volatile the_database;
|
|
extern seastar::scheduling_group streaming_scheduling_group;
|
|
extern seastar::scheduling_group gossip_scheduling_group;
|
|
|
|
}
|
|
|