Rename allocator to allocator_t

This commit is contained in:
Vitaliy Filippov
2025-03-13 00:53:34 +03:00
parent b760951aa7
commit 263a3b5ad6
7 changed files with 14 additions and 14 deletions
+1 -1
View File
@@ -20,7 +20,7 @@ blockstore_impl_t::blockstore_impl_t(blockstore_config_t & config, ring_loop_t *
dsk.open_meta();
dsk.open_journal();
calc_lengths();
data_alloc = new allocator(dsk.block_count);
data_alloc = new allocator_t(dsk.block_count);
}
catch (std::exception & e)
{
+1 -1
View File
@@ -279,7 +279,7 @@ class blockstore_impl_t
std::vector<obj_ver_id> unsynced_big_writes, unsynced_small_writes;
int unsynced_big_write_count = 0, unstable_unsynced = 0;
int unsynced_queued_ops = 0;
allocator *data_alloc = NULL;
allocator_t *data_alloc = NULL;
uint64_t used_blocks = 0;
uint8_t *zero_object;