Skip to content

Commit

Permalink
Remove unused MCA param
Browse files Browse the repository at this point in the history
Session directories now always include the PID of the daemon

Signed-off-by: Ralph Castain <[email protected]>
  • Loading branch information
rhc54 committed Feb 10, 2024
1 parent a87d172 commit c4d5f81
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 8 deletions.
1 change: 0 additions & 1 deletion src/runtime/prte_globals.c
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@ char *prte_tool_actual = NULL;
bool prte_dvm_ready = false;
pmix_pointer_array_t *prte_cache = NULL;
bool prte_persistent = true;
bool prte_add_pid_to_session_dirname = false;
bool prte_allow_run_as_root = false;
bool prte_fwd_environment = false;
bool prte_show_launch_progress = false;
Expand Down
1 change: 0 additions & 1 deletion src/runtime/prte_globals.h
Original file line number Diff line number Diff line change
Expand Up @@ -508,7 +508,6 @@ PRTE_EXPORT extern char *prte_data_server_uri;
PRTE_EXPORT extern bool prte_dvm_ready;
PRTE_EXPORT extern pmix_pointer_array_t *prte_cache;
PRTE_EXPORT extern bool prte_persistent;
PRTE_EXPORT extern bool prte_add_pid_to_session_dirname;
PRTE_EXPORT extern bool prte_allow_run_as_root;
PRTE_EXPORT extern bool prte_fwd_environment;

Expand Down
6 changes: 0 additions & 6 deletions src/runtime/prte_mca_params.c
Original file line number Diff line number Diff line change
Expand Up @@ -298,12 +298,6 @@ int prte_register_params(void)
PMIX_MCA_BASE_VAR_TYPE_STRING,
&prte_prohibited_session_dirs);

prte_add_pid_to_session_dirname = false;
(void) pmix_mca_base_var_register("prte", "prte", NULL, "add_pid_to_session_dirname",
"Add pid to the DVM top-level session directory name",
PMIX_MCA_BASE_VAR_TYPE_BOOL,
&prte_add_pid_to_session_dirname);

prte_fwd_environment = false;
(void) pmix_mca_base_var_register("prte", "prte", NULL, "fwd_environment",
"Forward the entire local environment",
Expand Down

0 comments on commit c4d5f81

Please sign in to comment.