Skip to content

Commit

Permalink
further async development
Browse files Browse the repository at this point in the history
  • Loading branch information
edhartnett committed May 12, 2016
1 parent 19ea322 commit 8938469
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/clib/pio_nc_async.c
Original file line number Diff line number Diff line change
Expand Up @@ -2074,6 +2074,13 @@ int PIOc_get_att(int ncid, int varid, const char *name, void *ip)
{
int msg = PIO_MSG_GET_ATT_INT;

/* Get the type and length of the attribute. */
if ((ierr = PIOc_inq_att(file->fh, varid, name, &atttype, &attlen)))
{
check_netcdf(file, ierr, __FILE__, __LINE__);
return ierr;
}

if(ios->compmaster)
mpierr = MPI_Send(&msg, 1,MPI_INT, ios->ioroot, 1, ios->union_comm);

Expand Down

0 comments on commit 8938469

Please sign in to comment.