From ba89561da168e83419b9f5d6a4b383376e81db66 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Stolarczuk?= Date: Mon, 7 Jul 2025 17:00:34 +0200 Subject: [PATCH] [Example] Fix error msg in ipc example --- examples/ipc_ipcapi/ipc_ipcapi_consumer.c | 4 ++-- examples/ipc_ipcapi/ipc_ipcapi_producer.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/ipc_ipcapi/ipc_ipcapi_consumer.c b/examples/ipc_ipcapi/ipc_ipcapi_consumer.c index 2f55c473f..d2c98fbbd 100644 --- a/examples/ipc_ipcapi/ipc_ipcapi_consumer.c +++ b/examples/ipc_ipcapi/ipc_ipcapi_consumer.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2024 Intel Corporation + * Copyright (C) 2024-2025 Intel Corporation * * Under the Apache License v2.0 with LLVM Exceptions. See LICENSE.TXT. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception @@ -138,7 +138,7 @@ int main(int argc, char *argv[]) { 0, &scalable_pool); if (umf_result != UMF_RESULT_SUCCESS) { fprintf(stderr, - "[producer] ERROR: creating jemalloc UMF pool failed\n"); + "[producer] ERROR: creating UMF scalable pool failed\n"); goto err_destroy_OS_memory_provider; } diff --git a/examples/ipc_ipcapi/ipc_ipcapi_producer.c b/examples/ipc_ipcapi/ipc_ipcapi_producer.c index 9082302ac..a5c791851 100644 --- a/examples/ipc_ipcapi/ipc_ipcapi_producer.c +++ b/examples/ipc_ipcapi/ipc_ipcapi_producer.c @@ -125,7 +125,7 @@ int main(int argc, char *argv[]) { 0, &scalable_pool); if (umf_result != UMF_RESULT_SUCCESS) { fprintf(stderr, - "[producer] ERROR: creating the UMF jemalloc pool failed\n"); + "[producer] ERROR: creating UMF scalable pool failed\n"); goto err_destroy_OS_memory_provider; }