Skip to content

Commit

Permalink
Correct min version for pmix_getline util
Browse files Browse the repository at this point in the history
Wasn't made globally visible until PMIx v4.2.8

Signed-off-by: Ralph Castain <[email protected]>
  • Loading branch information
rhc54 committed Dec 6, 2023
1 parent eefd2b4 commit 9e68bf4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/mca/ess/base/ess_base_bootstrap.c
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ static pmix_status_t regex_parse_value_range(char *base, char *range,
char ***names);
static pmix_status_t read_file(char *regexp, char ***names);

#if PMIX_NUMERIC_VERSION < 0x00040207
#if PMIX_NUMERIC_VERSION < 0x00040208
static char *pmix_getline(FILE *fp)
{
char *ret, *buff;
Expand Down
2 changes: 1 addition & 1 deletion src/mca/ras/base/ras_base_allocate.c
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@

#include "src/mca/ras/base/ras_private.h"

#if PMIX_NUMERIC_VERSION < 0x00040207
#if PMIX_NUMERIC_VERSION < 0x00040208
static char *pmix_getline(FILE *fp)
{
char *ret, *buff;
Expand Down
2 changes: 1 addition & 1 deletion src/mca/rmaps/rank_file/rmaps_rank_file.c
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ static int prte_rmaps_rf_process_lsf_affinity_hostfile(prte_job_t *jdata, prte_r

char *prte_rmaps_rank_file_slot_list = NULL;

#if PMIX_NUMERIC_VERSION < 0x00040207
#if PMIX_NUMERIC_VERSION < 0x00040208
static char *pmix_getline(FILE *fp)
{
char *ret, *buff;
Expand Down
2 changes: 1 addition & 1 deletion src/mca/rmaps/seq/rmaps_seq.c
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ static bool quickmatch(prte_node_t *nd, char *name)
return false;
}

#if PMIX_NUMERIC_VERSION < 0x00040207
#if PMIX_NUMERIC_VERSION < 0x00040208
static char *pmix_getline(FILE *fp)
{
char *ret, *buff;
Expand Down

0 comments on commit 9e68bf4

Please sign in to comment.