2015-03-06 06:50:44 +03:00
|
|
|
/* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil -*- */
|
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.
|
2015-03-06 06:50:44 +03:00
|
|
|
* Copyright (c) 2015 Los Alamos National Security, LLC. All rights
|
|
|
|
* reserved.
|
2006-04-05 09:56:08 +04:00
|
|
|
* $COPYRIGHT$
|
2015-06-24 06:59:57 +03:00
|
|
|
*
|
2006-04-05 09:56:08 +04:00
|
|
|
* Additional copyrights may follow
|
2015-06-24 06:59:57 +03:00
|
|
|
*
|
2006-04-05 09:56:08 +04:00
|
|
|
* $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 \
|
2015-03-06 06:50:44 +03:00
|
|
|
OPAL_MCA_BASE_VERSION_2_1_0("memcpy", 2, 0, 0)
|
2006-04-05 09:56:08 +04:00
|
|
|
|
|
|
|
#endif /* OPAL_MCA_MEMCPY_MEMCPY_H */
|