From c7137a7a53a57e549732ffac9fb759aed13f6bbf Mon Sep 17 00:00:00 2001 From: Matthias Kruk Date: Tue, 15 Jun 2021 08:31:38 +0900 Subject: [PATCH] include/ipc: Rename ipc_endpoint_new() to ipc_endpoint_open() The functions for creating new endpoints and freeing endpoints are called ipc_endpoint_new() and ipc_endpoint_close(), which is not intuitive. This commit renames ipc_endpoint_new() to ipc_endpoint_open(), since open/close is the terminology that is traditionally used in communication APIs. --- include/ipc.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/ipc.sh b/include/ipc.sh index 096015b..a48e8c1 100644 --- a/include/ipc.sh +++ b/include/ipc.sh @@ -326,7 +326,7 @@ ipc_msg_get_timestamp() { return 0 } -ipc_endpoint_new() { +ipc_endpoint_open() { local name="$1" local endpoint -- 2.47.3