Deletes specified number of error messages from the error stack
Procedure:
H5E_POP(estack_id, count)
Signature:
herr_t H5Epop(hid_t estack_id, size_t count)
Parameters:
hid_t estack_id | IN: Error stack identifier |
size_t count | IN: The number of error messages to be deleted from the top of error stack |
Description:
H5E_POP deletes the number of error records specified in count
from the top of the error stack specified by estack_id
(including major, minor messages and description). The number of error messages to be deleted is specified by count
.
Returns:
Returns a non-negative value on success; otherwise returns a negative value.
Example:
History:
Release | C |
1.8.0 | Function introduced in this release. |
--- Last Modified: April 13, 2018 | 01:48 PM