/* * Copyright (c) 2015-2020 Intel, Inc. All rights reserved. * * Copyright (c) 2021-2022 Nanook Consulting. All rights reserved. * $COPYRIGHT$ * * Additional copyrights may follow * * $HEADER$ */ #ifndef PMIX_PNET_sshot_H #define PMIX_PNET_sshot_H #include "src/include/pmix_config.h" #include "src/mca/pnet/pnet.h" BEGIN_C_DECLS typedef struct { pmix_pnet_base_component_t super; char *vnid_username; char *credential; char *vnid_url; char *nodes; int numnodes; int ppn; } pmix_pnet_sshot_component_t; /* the component must be visible data for the linker to find it */ PMIX_EXPORT extern pmix_pnet_sshot_component_t pmix_mca_pnet_sshot_component; PMIX_EXPORT extern pmix_pnet_module_t pmix_sshot_module; /* define a key for any blob we need to send in a launch msg */ #define PMIX_PNET_SSHOT_BLOB "pmix.pnet.sshot.blob" PMIX_EXPORT pmix_status_t pmix_pnet_sshot_register_fabric(pmix_fabric_t *fabric, const pmix_info_t directives[], size_t ndirs, pmix_op_cbfunc_t cbfunc, void *cbdata); END_C_DECLS #endif