2006-04-05 09:56:08 +04:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2004-2006 The University of Tennessee and The University
|
|
|
|
* of Tennessee Research Foundation. All rights
|
|
|
|
* reserved.
|
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef OPAL_MCA_MEMCPY_MEMCPY_H
|
|
|
|
#define OPAL_MCA_MEMCPY_MEMCPY_H
|
|
|
|
|
|
|
|
#include "opal_config.h"
|
|
|
|
|
|
|
|
#include "opal/mca/mca.h"
|
|
|
|
#include "opal/mca/base/base.h"
|
|
|
|
|
|
|
|
/**
|
2008-07-29 02:40:57 +04:00
|
|
|
* Structure for memcpy components.
|
2006-04-05 09:56:08 +04:00
|
|
|
*/
|
2008-07-29 02:40:57 +04:00
|
|
|
struct opal_memcpy_base_component_2_0_0_t {
|
2006-04-05 09:56:08 +04:00
|
|
|
/** MCA base component */
|
|
|
|
mca_base_component_t memcpyc_version;
|
|
|
|
/** MCA base data */
|
2008-07-29 02:40:57 +04:00
|
|
|
mca_base_component_data_t memcpyc_data;
|
2006-04-05 09:56:08 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Convenience typedef
|
|
|
|
*/
|
2008-07-29 02:40:57 +04:00
|
|
|
typedef struct opal_memcpy_base_component_2_0_0_t opal_memcpy_base_component_2_0_0_t;
|
2006-04-05 09:56:08 +04:00
|
|
|
|
|
|
|
/*
|
2008-07-29 02:40:57 +04:00
|
|
|
* Macro for use in components that are of type memcpy
|
2006-04-05 09:56:08 +04:00
|
|
|
*/
|
2008-07-29 02:40:57 +04:00
|
|
|
#define OPAL_MEMCPY_BASE_VERSION_2_0_0 \
|
|
|
|
MCA_BASE_VERSION_2_0_0, \
|
|
|
|
"memcpy", 2, 0, 0
|
2006-04-05 09:56:08 +04:00
|
|
|
|
|
|
|
#endif /* OPAL_MCA_MEMCPY_MEMCPY_H */
|