HDFFV-10412 add complemnt to java error_off

This commit is contained in:
Allen Byrne
2018-03-13 17:36:08 -05:00
parent 6a90c221e2
commit 880d14d4c5
4 changed files with 37 additions and 1 deletions

View File

@@ -424,13 +424,19 @@ public class H5 implements java.io.Serializable {
private synchronized static native int H5dont_atexit() throws HDF5LibraryException;
/**
* Turn off error handling By default, the C library prints the error stack of the HDF-5 C library on stdout. This
* Turn off error handling. By default, the C library prints the error stack of the HDF-5 C library on stdout. This
* behavior may be disabled by calling H5error_off().
*
* @return a non-negative value if successful
*/
public synchronized static native int H5error_off();
/**
* Turn on error handling. By default, the C library prints the error stack of the HDF-5 C library on stdout. This
* behavior may be reenabled by calling H5error_on().
*/
public synchronized static native void H5error_on();
/**
* H5garbage_collect collects on all free-lists of all types.
*