chore: update helio together with new mimalloc version (#3040)

Signed-off-by: Roman Gershman <roman@dragonflydb.io>
This commit is contained in:
Roman Gershman 2024-05-13 12:48:05 +03:00 committed by GitHub
parent 8721ca7fca
commit 5bf7e3b146
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
21 changed files with 45 additions and 45 deletions

View file

@ -12,13 +12,13 @@
#include <mimalloc.h>
#include "base/io_buf.h"
#include "base/logging.h"
#include "core/allocation_tracker.h"
#include "facade/cmd_arg_parser.h"
#include "facade/dragonfly_connection.h"
#include "facade/dragonfly_listener.h"
#include "facade/error.h"
#include "io/io_buf.h"
#include "server/engine_shard_set.h"
#include "server/main_service.h"
#include "server/server_family.h"
@ -172,11 +172,11 @@ struct ConnectionMemoryUsage {
size_t connection_count = 0;
size_t connection_size = 0;
size_t pipelined_bytes = 0;
base::IoBuf::MemoryUsage connections_memory;
io::IoBuf::MemoryUsage connections_memory;
size_t replication_connection_count = 0;
size_t replication_connection_size = 0;
base::IoBuf::MemoryUsage replication_memory;
io::IoBuf::MemoryUsage replication_memory;
};
ConnectionMemoryUsage GetConnectionMemoryUsage(ServerFamily* server) {