changes.mady.by.user Mike McGreevy
Saved on Dec 04, 2017
changes.mady.by.user Barbara Jones
Saved on Aug 06, 2019
Retrieves the size of the external link open file cache
H5P_GET_ELINK_FILE_CACHE_SIZE ( fapl_id, efc_size )
<pre><code class="language-c">herr_t H5Pget_elink_file_cache_size( hid_t fapl_id, unsigned *efc_size ) </code></pre>
fapl_id
efc_size
H5P_
GET_
ELINK_
FILE_
CACHE_SIZE retrieves the number of files that can be held open in an external link open file cache.
Returns a non-negative value if successful; otherwise returns a negative value.
The following code retrieves the size of the external link open file cache in the local variable efc_size:
status = H5Pget_elink_file_cache_size(fapl_id, &efc_size);