Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion opal/mca/pmix/pmix2x/pmix/include/pmix_common.h
Original file line number Diff line number Diff line change
Expand Up @@ -1040,7 +1040,7 @@ pmix_status_t pmix_argv_append_nosize(char ***argv, const char *arg);
(r) = pmix_argv_append_nosize(&(a), (b))

pmix_status_t pmix_setenv(const char *name, const char *value,
bool overwrite, char ***env);
bool overwrite, char ***env);
#define PMIX_SETENV(r, a, b, c) \
(r) = pmix_setenv((a), (b), true, (c))

Expand Down
2 changes: 1 addition & 1 deletion opal/mca/pmix/pmix2x/pmix/src/mca/pnet/base/base.h
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ struct pmix_pnet_globals_t {
};
typedef struct pmix_pnet_globals_t pmix_pnet_globals_t;

extern pmix_pnet_globals_t pmix_pnet_globals;
PMIX_EXPORT extern pmix_pnet_globals_t pmix_pnet_globals;

PMIX_EXPORT pmix_status_t pmix_pnet_base_setup_app(char *nspace, pmix_list_t *ilist);
PMIX_EXPORT pmix_status_t pmix_pnet_base_setup_local_network(char *nspace,
Expand Down
6 changes: 3 additions & 3 deletions opal/mca/pmix/pmix2x/pmix/src/runtime/pmix_init.c
Original file line number Diff line number Diff line change
Expand Up @@ -270,11 +270,11 @@ int pmix_rte_init(pmix_proc_type_t type,
goto return_error;
}

/* tell libevent that we need thread support */
pmix_event_use_threads();

/* if an external event base wasn't provide, create one */
if (!pmix_globals.external_evbase) {
/* tell libevent that we need thread support */
pmix_event_use_threads();

/* create an event base and progress thread for us */
if (NULL == (pmix_globals.evbase = pmix_progress_thread_init(NULL))) {
error = "progress thread";
Expand Down
4 changes: 2 additions & 2 deletions opal/mca/pmix/pmix2x/pmix/src/util/basename.h
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ BEGIN_C_DECLS
*
* The caller is responsible for freeing the returned string.
*/
char *pmix_basename(const char* filename) __pmix_attribute_malloc__ __pmix_attribute_warn_unused_result__;
PMIX_EXPORT char *pmix_basename(const char* filename) __pmix_attribute_malloc__ __pmix_attribute_warn_unused_result__;

/**
* Return the dirname of a filename.
Expand Down Expand Up @@ -107,7 +107,7 @@ char *pmix_basename(const char* filename) __pmix_attribute_malloc__ __pmix_attri
*
* The caller is responsible for freeing the returned string.
*/
char *pmix_dirname(const char* filename) __pmix_attribute_malloc__ __pmix_attribute_warn_unused_result__;
PMIX_EXPORT char *pmix_dirname(const char* filename) __pmix_attribute_malloc__ __pmix_attribute_warn_unused_result__;

END_C_DECLS

Expand Down
2 changes: 1 addition & 1 deletion opal/mca/pmix/pmix2x/pmix/src/util/getid.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
BEGIN_C_DECLS

/* lookup the effective uid and gid of a socket */
pmix_status_t pmix_util_getid(int sd, uid_t *uid, gid_t *gid);
PMIX_EXPORT pmix_status_t pmix_util_getid(int sd, uid_t *uid, gid_t *gid);

END_C_DECLS

Expand Down
Loading