Trying to sort out why netcdf parallel documentation isn't being generated.

This commit is contained in:
Ward Fisher 2016-01-14 11:02:23 -07:00
parent 10aed48aac
commit 75b0bcf07e
3 changed files with 21 additions and 18 deletions

View File

@ -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 \

View File

@ -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.
*

View File

@ -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
}