81f38b258a
This commit was SVN r24795.
126 строки
4.3 KiB
C
126 строки
4.3 KiB
C
/*
|
|
* Copyright (c) 2004-2008 The Trustees of Indiana University and Indiana
|
|
* University Research and Technology
|
|
* Corporation. All rights reserved.
|
|
* Copyright (c) 2004-2005 The University of Tennessee and The University
|
|
* of Tennessee Research Foundation. All rights
|
|
* reserved.
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
* University of Stuttgart. All rights reserved.
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
* All rights reserved.
|
|
* Copyright (c) 2007-2010 Cisco Systems, Inc. All rights reserved.
|
|
* Copyright (c) 2010-2011 Los Alamos National Security, LLC.
|
|
* All rights reserved.
|
|
* $COPYRIGHT$
|
|
*
|
|
* Additional copyrights may follow
|
|
*
|
|
* $HEADER$
|
|
*
|
|
* These symbols are in a file by themselves to provide nice linker
|
|
* semantics. Since linkers generally pull in symbols by object
|
|
* files, keeping these symbols as the only symbols in this file
|
|
* prevents utility programs such as "ompi_info" from having to import
|
|
* entire components just to query their version and parameters.
|
|
*/
|
|
|
|
#include "opal_config.h"
|
|
|
|
#include "opal/constants.h"
|
|
#include "opal/mca/shmem/shmem.h"
|
|
#include "opal/mca/shmem/windows/shmem_windows.h"
|
|
|
|
/**
|
|
* public string showing the shmem ompi_windows component version number
|
|
*/
|
|
const char *opal_shmem_windows_component_version_string =
|
|
"OPAL windows shmem MCA component version " OPAL_VERSION;
|
|
|
|
/**
|
|
* local functions
|
|
*/
|
|
static int windows_open(void);
|
|
static int windows_query(mca_base_module_t **module, int *priority);
|
|
static int windows_runtime_query(mca_base_module_t **module,
|
|
int *priority,
|
|
const char *hint);
|
|
|
|
/**
|
|
* instantiate the public struct with all of our public information
|
|
* and pointers to our public functions in it
|
|
*/
|
|
opal_shmem_windows_component_t mca_shmem_windows_component = {
|
|
/* ////////////////////////////////////////////////////////////////////// */
|
|
/* super */
|
|
/* ////////////////////////////////////////////////////////////////////// */
|
|
{
|
|
/**
|
|
* common MCA component data
|
|
*/
|
|
{
|
|
OPAL_SHMEM_BASE_VERSION_2_0_0,
|
|
|
|
/* component name and version */
|
|
"windows",
|
|
OPAL_MAJOR_VERSION,
|
|
OPAL_MINOR_VERSION,
|
|
OPAL_RELEASE_VERSION,
|
|
|
|
/* component open */
|
|
windows_open,
|
|
/* component close */
|
|
NULL,
|
|
/* component query */
|
|
windows_query
|
|
},
|
|
/* MCA v2.0.0 component meta data */
|
|
{
|
|
/* the component is checkpoint ready */
|
|
MCA_BASE_METADATA_PARAM_CHECKPOINT
|
|
},
|
|
windows_runtime_query,
|
|
},
|
|
/* ////////////////////////////////////////////////////////////////////// */
|
|
/* windows component-specific information */
|
|
/* see: shmem_windows.h for more information */
|
|
/* ////////////////////////////////////////////////////////////////////// */
|
|
/* (default) priority - set high to make windows the default */
|
|
45
|
|
};
|
|
|
|
/* ////////////////////////////////////////////////////////////////////////// */
|
|
static int
|
|
windows_runtime_query(mca_base_module_t **module,
|
|
int *priority,
|
|
const char *hint)
|
|
{
|
|
/* no run-time query needed for windows, so this is easy */
|
|
*priority = mca_shmem_windows_component.priority;
|
|
*module = (mca_base_module_t *)&opal_shmem_windows_module.super;
|
|
return OPAL_SUCCESS;
|
|
}
|
|
|
|
/* ////////////////////////////////////////////////////////////////////////// */
|
|
static int
|
|
windows_open(void)
|
|
{
|
|
mca_base_param_reg_int(
|
|
&mca_shmem_windows_component.super.base_version,
|
|
"priority", "Priority of the windows shmem component", false, false,
|
|
mca_shmem_windows_component.priority, &mca_shmem_windows_component.priority
|
|
);
|
|
|
|
return OPAL_SUCCESS;
|
|
}
|
|
|
|
/* ////////////////////////////////////////////////////////////////////////// */
|
|
static int
|
|
windows_query(mca_base_module_t **module, int *priority)
|
|
{
|
|
*priority = mca_shmem_windows_component.priority;
|
|
*module = (mca_base_module_t *)&opal_shmem_windows_module.super;
|
|
return OPAL_SUCCESS;
|
|
}
|
|
|