mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-13 16:47:58 +08:00
[svn-r6374] Purpose:
Update Description: Converted the "FUNC_LEAVE" macros to "FUNC_LEAVE_NOAPI" to be consistent with the rest of the library. Note: This is probably completely useless as the file is going to go away with the new model of the SAP as metadata cache...But it helps me compile... Platforms tested: Linux (FPHDF5)
This commit is contained in:
parent
b14417185c
commit
092a41fe51
@ -205,7 +205,7 @@ done:
|
||||
H5FL_FREE(H5O_fphdf5_t, fmeta);
|
||||
}
|
||||
|
||||
FUNC_LEAVE(ret_value);
|
||||
FUNC_LEAVE_NOAPI(ret_value);
|
||||
}
|
||||
|
||||
/*
|
||||
@ -305,7 +305,7 @@ H5O_fphdf5_encode(H5F_t *f, uint8_t *p, const void *mesg)
|
||||
HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, FAIL, "memory allocation failed");
|
||||
|
||||
done:
|
||||
FUNC_LEAVE(ret_value);
|
||||
FUNC_LEAVE_NOAPI(ret_value);
|
||||
}
|
||||
|
||||
/*
|
||||
@ -354,7 +354,7 @@ H5O_fphdf5_copy(const void *mesg, void *dest)
|
||||
ret_value = dst;
|
||||
|
||||
done:
|
||||
FUNC_LEAVE(ret_value);
|
||||
FUNC_LEAVE_NOAPI(ret_value);
|
||||
}
|
||||
|
||||
/*
|
||||
@ -395,7 +395,7 @@ H5O_fphdf5_size(H5F_t *f, const void *mesg)
|
||||
ret_value += H5O_PLIST[0].raw_size(f, fmeta->plist);
|
||||
|
||||
done:
|
||||
FUNC_LEAVE(ret_value);
|
||||
FUNC_LEAVE_NOAPI(ret_value);
|
||||
}
|
||||
|
||||
/*
|
||||
@ -445,7 +445,7 @@ H5O_fphdf5_reset(void *mesg)
|
||||
ret_value = H5O_PLIST[0].reset(fmeta->plist);
|
||||
|
||||
done:
|
||||
FUNC_LEAVE(ret_value);
|
||||
FUNC_LEAVE_NOAPI(ret_value);
|
||||
}
|
||||
|
||||
/*
|
||||
@ -492,7 +492,7 @@ H5O_fphdf5_free(void *mesg)
|
||||
H5FL_FREE(H5O_fphdf5_t, fmeta);
|
||||
|
||||
done:
|
||||
FUNC_LEAVE(ret_value);
|
||||
FUNC_LEAVE_NOAPI(ret_value);
|
||||
}
|
||||
|
||||
/*
|
||||
@ -547,7 +547,7 @@ H5O_fphdf5_debug(H5F_t UNUSED *f, const void *mesg,
|
||||
HDfprintf(stream, "}\n");
|
||||
|
||||
done:
|
||||
FUNC_LEAVE(ret_value);
|
||||
FUNC_LEAVE_NOAPI(ret_value);
|
||||
}
|
||||
|
||||
#endif /* H5_HAVE_FPHDF5 */
|
||||
|
Loading…
x
Reference in New Issue
Block a user