mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-27 07:30:33 +08:00
Trying to sort out why netcdf parallel documentation isn't being generated.
This commit is contained in:
parent
10aed48aac
commit
75b0bcf07e
@ -765,8 +765,8 @@ INPUT = \
|
||||
@abs_top_srcdir@/docs/COPYRIGHT.dox \
|
||||
@abs_top_srcdir@/docs/credits.md \
|
||||
@abs_top_srcdir@/include/netcdf.h \
|
||||
@abs_top_srcdir@/include/netcdf_meta.h \
|
||||
@abs_top_srcdir@/include/netcdf_mem.h \
|
||||
@abs_top_srcdir@/include/netcdf_par.h \
|
||||
@abs_top_srcdir@/libdispatch/dfile.c \
|
||||
@abs_top_srcdir@/libdispatch/ddim.c \
|
||||
@abs_top_srcdir@/libdispatch/dvar.c \
|
||||
|
@ -1,4 +1,7 @@
|
||||
/*
|
||||
/*! \file
|
||||
*
|
||||
* Main header file for the Parallel C API.
|
||||
*
|
||||
* Copyright 2010 University Corporation for Atmospheric
|
||||
* Research/Unidata. See COPYRIGHT file for more info.
|
||||
*
|
||||
|
@ -1,4 +1,4 @@
|
||||
/** \file
|
||||
/** \file dparallel.c
|
||||
This file has the parallel I/O functions.
|
||||
|
||||
Copyright 2010 University Corporation for Atmospheric
|
||||
@ -8,9 +8,12 @@ Research/Unidata. See COPYRIGHT file for more info.
|
||||
#include "config.h"
|
||||
#include "ncdispatch.h"
|
||||
|
||||
/* This function creates a file for use with parallel I/O. */
|
||||
int
|
||||
nc_create_par(const char *path, int cmode, MPI_Comm comm,
|
||||
/** \ingroup datasets
|
||||
|
||||
This function creates a file for use with parallel I/O.
|
||||
|
||||
*/
|
||||
int nc_create_par(const char *path, int cmode, MPI_Comm comm,
|
||||
MPI_Info info, int *ncidp)
|
||||
{
|
||||
#ifndef USE_PARALLEL
|
||||
@ -124,6 +127,3 @@ nc_create_par_fortran(const char *path, int cmode, int comm,
|
||||
return nc_create_par(path, cmode, comm_c, info_c, ncidp);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user