
Bring Slurm PMI-1 component online Bring the s2 component online Little cleanup - let the various PMIx modules set the process name during init, and then just raise it up to the ORTE level. Required as the different PMI environments all pass the jobid in different ways. Bring the OMPI pubsub/pmi component online Get comm_spawn working again Ensure we always provide a cpuset, even if it is NULL pmix/cray: adjust cray pmix component for pmix Make changes so cray pmix can work within the integrated ompi/pmix framework. Bring singletons back online. Implement the comm_spawn operation using pmix - not tested yet Cleanup comm_spawn - procs now starting, error in connect_accept Complete integration
54 строки
1.2 KiB
C
54 строки
1.2 KiB
C
/*
|
|
* Copyright (c) 2014 Intel, Inc. All rights reserved.
|
|
* $COPYRIGHT$
|
|
*
|
|
* Additional copyrights may follow
|
|
*
|
|
* $HEADER$
|
|
*/
|
|
/** @file:
|
|
*/
|
|
|
|
#ifndef MCA_SEC_BASE_H
|
|
#define MCA_SEC_BASE_H
|
|
|
|
#include "opal_config.h"
|
|
#include "opal/types.h"
|
|
|
|
#include "opal/mca/mca.h"
|
|
#include "opal/mca/base/mca_base_framework.h"
|
|
#include "opal/class/opal_list.h"
|
|
#include "opal/dss/dss.h"
|
|
|
|
#include "opal/mca/sec/sec.h"
|
|
|
|
BEGIN_C_DECLS
|
|
|
|
OPAL_DECLSPEC extern mca_base_framework_t opal_sec_base_framework;
|
|
OPAL_DECLSPEC extern opal_list_t opal_sec_base_actives;
|
|
|
|
/* object for storing active components */
|
|
typedef struct {
|
|
opal_list_item_t super;
|
|
int pri;
|
|
opal_sec_base_module_t *module;
|
|
mca_base_component_t *component;
|
|
} opal_sec_handle_t;
|
|
OBJ_CLASS_DECLARATION(opal_sec_handle_t);
|
|
|
|
/**
|
|
* Select a sec module
|
|
*/
|
|
OPAL_DECLSPEC int opal_sec_base_select(void);
|
|
|
|
/* base stubs */
|
|
OPAL_DECLSPEC int opal_sec_base_get_cred(char *method,
|
|
opal_process_name_t *my_id,
|
|
char **payload, size_t *size);
|
|
|
|
OPAL_DECLSPEC int opal_sec_base_validate(char *payload, size_t size, char **method);
|
|
|
|
END_C_DECLS
|
|
|
|
#endif
|