From c6b677dde68d4896c2011249e0d1eca3e3e622b2 Mon Sep 17 00:00:00 2001 From: Frank Baker Date: Tue, 9 Jan 2001 16:55:07 -0500 Subject: [svn-r3253] Purpose: Clarifications in H5Pset_fapl_core. Platforms tested: IE 5 --- doc/html/RM_H5P.html | 24 +++++++++++++++++------- 1 file changed, 17 insertions(+), 7 deletions(-) diff --git a/doc/html/RM_H5P.html b/doc/html/RM_H5P.html index 4e38ad3..7ee0333 100644 --- a/doc/html/RM_H5P.html +++ b/doc/html/RM_H5P.html @@ -3757,7 +3757,6 @@ facilitate moving easily between them. http//www.npaci.edu/Research/DI/srb/.
Parameters:
-
hid_t fapl_id
IN: File access property list identifier.
SRB_Info *info @@ -3794,12 +3793,22 @@ facilitate moving easily between them.
H5Pset_fapl_core modifies the file access property list to use the H5FD_CORE driver.

- increment specifies the increment by which allocated memory - is to be increased each time more memory is required. + The H5FD_CORE driver enables an application to work + with a file in memory, speeding reads and writes as no disk access + is made. File contents are stored only in memory until the file + is closed. The backing_store parameter determines + whether file contents are ever written to disk. +

+ increment specifies the increment by which allocated + memory is to be increased each time more memory is required.

If backing_store is set to 1 (TRUE), the file contents are flushed to a file - with the same name as this core file. + with the same name as this core file when the file is closed + or access to the file is terminated in memory. +

Note: +
There is currently no means for reading a file from disk then + using the H5FD_CORE driver to manipulate the file.
Parameters:
hid_t fapl_id @@ -3807,7 +3816,8 @@ facilitate moving easily between them.
size_t increment
IN: Size, in bytes, of memory increments.
hbool_t backing_store -
IN: Boolean flag indicating whether to create file. +
IN: Boolean flag indicating whether to write the file + contents to disk when the file is closed.
Returns:
Returns a non-negative value if successful. @@ -3838,7 +3848,6 @@ facilitate moving easily between them.
Description:
H5Pget_fapl_core queries the H5FD_CORE driver properties as set by H5Pset_fapl_core. -
Parameters:
hid_t fapl_id @@ -3846,7 +3855,8 @@ facilitate moving easily between them.
size_t *increment
OUT: Size, in bytes, of memory increments.
hbool_t *backing_store -
OUT: Boolean flag indicating whether to create file. +
OUT: Boolean flag indicating whether to write the file + contents to disk when the file is closed.
Returns:
Returns a non-negative value if successful. -- cgit v0.12