28 строки
702 B
C
28 строки
702 B
C
|
/* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil -*- */
|
||
|
/*
|
||
|
* Copyright (c) 2016 Los Alamos National Security, LLC. All rights
|
||
|
* reserved.
|
||
|
* ******** ADD IBM COPYRIGHT HERE ******
|
||
|
* $COPYRIGHT$
|
||
|
*
|
||
|
* Additional copyrights may follow
|
||
|
*
|
||
|
* $HEADER$
|
||
|
*/
|
||
|
|
||
|
#if !defined(OPAL_MEMORY_PATCHER_H)
|
||
|
#define OPAL_MEMORY_PATCHER_H
|
||
|
|
||
|
#include "opal_config.h"
|
||
|
|
||
|
#include "opal/mca/memory/memory.h"
|
||
|
#include "opal/util/opal_patcher.h"
|
||
|
|
||
|
typedef struct opal_memory_patcher_component_t {
|
||
|
opal_memory_base_component_2_0_0_t super;
|
||
|
} opal_memory_patcher_component_t;
|
||
|
|
||
|
extern opal_memory_patcher_component_t mca_memory_patcher_component;
|
||
|
|
||
|
#endif /* !defined(OPAL_MEMORY_PATCHER_H) */
|