/* * Copyright (c) 2018-2020 Intel, Inc. All rights reserved. * Copyright (c) 2018 Research Organization for Information Science * and Technology (RIST). All rights reserved. * * Copyright (c) 2021-2023 Nanook Consulting All rights reserved. * $COPYRIGHT$ * * Additional copyrights may follow * * $HEADER$ */ #include "src/include/pmix_config.h" #include #ifdef HAVE_UNISTD_H # include #endif #ifdef HAVE_SYS_TYPES_H # include #endif #ifdef HAVE_SYS_STAT_H # include #endif #ifdef HAVE_FCNTL_H # include #endif #include #include "pmix_common.h" #include "src/class/pmix_list.h" #include "src/include/pmix_globals.h" #include "src/include/pmix_socket_errno.h" #include "src/mca/preg/preg.h" #include "src/util/pmix_alfg.h" #include "src/util/pmix_argv.h" #include "src/util/pmix_error.h" #include "src/util/pmix_output.h" #include "src/util/pmix_parse_options.h" #include "src/util/pmix_if.h" #include "src/util/pmix_environ.h" #include "prm_default.h" #include "src/mca/prm/base/base.h" static pmix_status_t default_allocate(pmix_alloc_directive_t directive, pmix_info_t *info, size_t ninfo, pmix_info_t **results, size_t *nresults); static pmix_status_t default_notify(pmix_status_t status, const pmix_proc_t *source, pmix_data_range_t range, const pmix_info_t info[], size_t ninfo, pmix_op_cbfunc_t cbfunc, void *cbdata); pmix_prm_module_t pmix_prm_default_module = { .name = "default", .allocate = default_allocate, .notify = default_notify }; static pmix_status_t default_allocate(pmix_alloc_directive_t directive, pmix_info_t *info, size_t ninfo, pmix_info_t **results, size_t *nresults) { PMIX_HIDE_UNUSED_PARAMS(directive, info, ninfo, results, nresults); return PMIX_ERR_NOT_SUPPORTED; } static pmix_status_t default_notify(pmix_status_t status, const pmix_proc_t *source, pmix_data_range_t range, const pmix_info_t info[], size_t ninfo, pmix_op_cbfunc_t cbfunc, void *cbdata) { int rc; /* if the server has provided the notify_event function * entry, then just call it */ if (NULL != pmix_host_server.notify_event) { rc = pmix_host_server.notify_event(status, source, range, (pmix_info_t *) info, ninfo, cbfunc, cbdata); } else { rc = PMIX_ERR_NOT_SUPPORTED; } return rc; }