Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions src/runtime/prte_mca_params.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
* and Technology (RIST). All rights reserved.
* Copyright (c) 2017 IBM Corporation. All rights reserved.
* Copyright (c) 2021-2025 Nanook Consulting All rights reserved.
* Copyright (c) 2025 Triad National Security, LLC. All rights
* reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
Expand Down Expand Up @@ -416,7 +418,13 @@ int prte_register_params(void)
&prte_do_not_resolve);

/* allow specification of the launch agent */
#ifdef PRTE_BINARY_PREFIX
char cmd[PRTE_PATH_MAX];
snprintf(cmd, PRTE_PATH_MAX, "%s%s", PRTE_BINARY_PREFIX, "prted");
prte_launch_agent = strdup(cmd);
#else
prte_launch_agent = "prted";
#endif
(void) pmix_mca_base_var_register("prte", "prte", NULL, "launch_agent",
"Executable for DVM daemons on remote nodes [default: prted]",
PMIX_MCA_BASE_VAR_TYPE_STRING,
Expand Down
Loading