mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-27 07:30:33 +08:00
now looking up NC in the libsrc dispatch layer open/create
This commit is contained in:
parent
659939d397
commit
64f983ee14
@ -1039,13 +1039,18 @@ int NC3_new_nc(NC3_INFO** ncpp)
|
||||
int
|
||||
NC3_create(const char *path, int ioflags, size_t initialsz, int basepe,
|
||||
size_t *chunksizehintp, void *parameters,
|
||||
const NC_Dispatch *dispatch, NC *nc)
|
||||
const NC_Dispatch *dispatch, NC *nc1)
|
||||
{
|
||||
int status = NC_NOERR;
|
||||
void *xp = NULL;
|
||||
int sizeof_off_t = 0;
|
||||
NC *nc;
|
||||
NC3_INFO* nc3 = NULL;
|
||||
|
||||
/* Find NC struct for this file. */
|
||||
if ((status = NC_check_id(nc1->ext_ncid, &nc)))
|
||||
return status;
|
||||
|
||||
/* Create our specific NC3_INFO instance */
|
||||
nc3 = new_NC3INFO(chunksizehintp);
|
||||
|
||||
@ -1171,10 +1176,15 @@ nc_set_default_format(int format, int *old_formatp)
|
||||
|
||||
int
|
||||
NC3_open(const char *path, int ioflags, int basepe, size_t *chunksizehintp,
|
||||
void *parameters, const NC_Dispatch *dispatch, NC *nc)
|
||||
void *parameters, const NC_Dispatch *dispatch, NC *nc1)
|
||||
{
|
||||
int status;
|
||||
NC3_INFO* nc3 = NULL;
|
||||
NC *nc;
|
||||
|
||||
/* Find NC struct for this file. */
|
||||
if ((status = NC_check_id(nc1->ext_ncid, &nc)))
|
||||
return status;
|
||||
|
||||
/* Create our specific NC3_INFO instance */
|
||||
nc3 = new_NC3INFO(chunksizehintp);
|
||||
|
Loading…
Reference in New Issue
Block a user