H5Epush is H5E_PUSH is a macro that is mapped to either H5E_PUSH1 or H5E_PUSH2, depending on the needs of the application.
Such macros are provided to facilitate application compatibility. Their use and mappings are fully described in “API Compatibility Macros in HDF5”; we urge you to read that document closely. When both the HDF5 Library library and the application are built and installed with no specific compatibility flags,H5E_PUSH H5Epush is is mapped to the most recent version of the function, currently H5E_PUSH2. If the library and/or application is compiled for Release 1.6 emulation, H5E_PUSH will will be mapped to H5E_PUSH1. Function-specific flags are available to override these settings on a function-by-function basis when the application is compiled. Specific compile-time compatibility flags and the resulting mappings are as follows: Compatibility setting | H5Epush mapping |
---|
Global settings | No compatibility flag | H5Epush2 | Enable deprecated symbols | H5Epush2 | Disable deprecated symbols | H5Epush2 | Emulate Release 1.6 interface | H5Epush1 | Function-level macros | H5Epush_vers = 2 | H5Epush2 | H5Epush_vers = 1 | H5Epush1 |
|