mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-01-18 15:55:12 +08:00
Quincey noted the following declarations
are duplicated in netcdf.h and netcdf_par.h This commit removed the duplicates from netcdf.h since they are only used when parallism is enabled. /* Use these with nc_var_par_access(). */ #define NC_INDEPENDENT 0 #define NC_COLLECTIVE 1 /* Set parallel access for a variable to independent (the default) or * collective. */ EXTERNL int nc_var_par_access(int ncid, int varid, int par_access);
This commit is contained in:
parent
e636881aa7
commit
6e954fa2ce
@ -444,15 +444,6 @@ nc_open(const char *path, int mode, int *ncidp);
|
||||
EXTERNL int
|
||||
nc_inq_path(int ncid, size_t *pathlen, char *path);
|
||||
|
||||
/* Use these with nc_var_par_access(). */
|
||||
#define NC_INDEPENDENT 0
|
||||
#define NC_COLLECTIVE 1
|
||||
|
||||
/* Set parallel access for a variable to independent (the default) or
|
||||
* collective. */
|
||||
EXTERNL int
|
||||
nc_var_par_access(int ncid, int varid, int par_access);
|
||||
|
||||
/* Given an ncid and group name (NULL gets root group), return
|
||||
* locid. */
|
||||
EXTERNL int
|
||||
|
Loading…
Reference in New Issue
Block a user