Ignore:
Timestamp:
05/24/17 16:59:40 (7 years ago)
Author:
yushan
Message:

save modif

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS/dev/branch_yushan_merged/src/io/netCdfInterface_impl.hpp

    r1138 r1146  
    8686  int CNetCdfInterface::getVaraType(int ncid, int varId, const StdSize* start, const StdSize* count, T* data) 
    8787  { 
    88     int status = ncGetVaraType(ncid, varId, start, count, data); 
     88    int status; 
     89    #pragma omp critical (_netcdf) 
     90    status = ncGetVaraType(ncid, varId, start, count, data); 
    8991    if (NC_NOERR != status) 
    9092    { 
Note: See TracChangeset for help on using the changeset viewer.