1
1

Make the filenames follow the prefix rule

This commit was SVN r1814.
Этот коммит содержится в:
Jeff Squyres 2004-07-27 12:02:24 +00:00
родитель 4799f629e3
Коммит 81d35ccf3c
7 изменённых файлов: 10 добавлений и 28 удалений

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

@ -1,4 +1,3 @@
# -*- makefile -*-
#
# $HEADER$
#
@ -16,8 +15,8 @@ libmca_io_romio_la_SOURCES = \
io_romio_conv.h \
io_romio_global.c \
io_romio_module.c \
file_open.c \
file_read.c \
file_request.c \
file_write.c
io_romio_file_open.c \
io_romio_file_read.c \
io_romio_file_request.c \
io_romio_file_write.c

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

@ -7,8 +7,6 @@
#include "io_romio.h"
int mca_io_romio_module_open (void);
int mca_io_romio_module_close (void);
mca_io_1_0_0_t *mca_io_romio_module_init (int *priority,
int *min_thread,
int *max_thread);
@ -25,8 +23,8 @@ mca_io_base_module_1_0_0_t mca_io_romio_module = {
1, /* MCA module major version */
0, /* MCA module minor version */
0, /* MCA module release version */
mca_io_romio_module_open, /* module open */
mca_io_romio_module_close /* module close */
NULL,
NULL
},
/* Next the MCA v1.0.0 module meta data */
@ -40,21 +38,6 @@ mca_io_base_module_1_0_0_t mca_io_romio_module = {
};
int
mca_io_romio_module_open (void)
{
return OMPI_SUCCESS;
/* register all mca parameters */
}
int
mca_io_romio_module_close (void)
{
return OMPI_SUCCESS;
}
mca_io_1_0_0_t *
mca_io_romio_module_init (int *priority,
int *min_thread,

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