Page tree

 

JAVA

FORTRAN

C++

C

 

Link

H5PL_GET_LOADING_STATE

Queries the state of the loading of dynamic plugins

Procedure:

H5PL_GET_LOADING_STATE (plugin_control_mask)

Signature:

herr_t H5PLget_loading_state( unsigned int *plugin_control_mask )

Parameters:
unsigned int plugin_control_mask   OUT: List of dynamic plugin types that are enabled or disabled 
A plugin bit set to 0 (zero) indicates that that dynamic plugin is disabled. 
A plugin bit set to 1 (one) indicates that that dynamic plugin is enabled.

If the value of plugin_control_mask is negative, all dynamic plugins are enabled. 
If the value of plugin_control_mask is 0 (zero), all dynamic plugins are disabled.

Description:

H5PL_GET_LOADING_STATE retrieves the bitmask that controls whether certain classes of plugins (e.g.: filters, VOL drivers) will be loaded by the library.  

 Types of plugins that are subject to programmatic control are listed in the definition of the H5PL_type_t ENUM. That list is presented in the “Plugin Type/Bit Position” table in the H5PL_SET_LOADING_STATE  reference manual entry.

Returns:

Returns a non-negative value if successful; otherwise returns a negative value.

Example:

Coming Soon!

History:
Release    Change
1.8.15Function introduced in this release.

--- Last Modified: May 03, 2019 | 02:52 PM