From c1a8aaa67764ec76b48d25bfb88c985fd79ecebc Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Thu, 12 Jun 2025 13:28:39 +0200 Subject: [PATCH] opal-client: Fix OPAL-RT naming Signed-off-by: Steffen Vogel --- clients/opal-rt/rtlab-asyncip/models/send_receive/src/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clients/opal-rt/rtlab-asyncip/models/send_receive/src/main.c b/clients/opal-rt/rtlab-asyncip/models/send_receive/src/main.c index 6a1eacefe..c6fcc2aa1 100644 --- a/clients/opal-rt/rtlab-asyncip/models/send_receive/src/main.c +++ b/clients/opal-rt/rtlab-asyncip/models/send_receive/src/main.c @@ -253,7 +253,7 @@ static void *RecvFromIPPort(void *arg) { for (int i = 0; i < msg->length; i++) mdldata[i] = (double)msg->data[i].f; - // Update OPAL model + // Update OPAL-RT model OpalSetAsyncRecvIconStatus(msg->sequence, RecvID); // Set the Status to the message ID #elif PROTOCOL == GTNET_SKT @@ -292,7 +292,7 @@ int main(int argc, char *argv[]) { // Check for the proper arguments to the program if (argc < 4) { printf("Invalid Arguments: 1-AsyncShmemName 2-AsyncShmemSize " - "3-PrintShmemName\n"); + "3-SystemCtrlShmemName\n"); exit(0); }