1
1
This commit was SVN r23409.
Этот коммит содержится в:
Shiqing Fan 2010-07-14 09:04:34 +00:00
родитель bfe6c95dce
Коммит fb5a0ecdc0
4 изменённых файлов: 18 добавлений и 4 удалений

Просмотреть файл

@ -32,11 +32,7 @@
* component's public mca_base_component_t struct.
*/
#ifdef __WINDOWS__
const mca_base_component_t *mca_rcache_base_static_components[] = {NULL};
#else
#include "ompi/mca/rcache/base/static-components.h"
#endif
/*

12
ompi/mca/rcache/vma/.windows Обычный файл
Просмотреть файл

@ -0,0 +1,12 @@
#
# Copyright (c) 2008-2010 High Performance Computing Center Stuttgart,
# University of Stuttgart. All rights reserved.
# $COPYRIGHT$
#
# Additional copyrights may follow
#
# $HEADER$
#
# Specific to this module
mca_link_libraries=libmpi libopen-rte

Просмотреть файл

@ -16,6 +16,8 @@
# $HEADER$
#
EXTRA_DIST = .windows
sources = \
rcache_vma.c \
rcache_vma.h \

Просмотреть файл

@ -32,6 +32,8 @@
#include "ompi/class/ompi_rb_tree.h"
#include "ompi/mca/rcache/rcache.h"
BEGIN_C_DECLS
struct mca_rcache_vma_module_t {
mca_rcache_base_module_t base;
ompi_rb_tree_t rb_tree;
@ -80,6 +82,8 @@ void mca_rcache_vma_module_init(mca_rcache_vma_module_t *rcache);
void mca_rcache_vma_finalize(struct mca_rcache_base_module_t*);
END_C_DECLS
#endif /* MCA_RCACHE_VMA_H */