mirror of
https://github.com/HDFGroup/hdf5.git
synced 2024-11-27 02:10:55 +08:00
[svn-r12453] Purpose:
Documentation update Description: Updated MANIFEST and RELEASE.txt for H5L change
This commit is contained in:
parent
801ca2f9cb
commit
3f4cbda457
7
MANIFEST
7
MANIFEST
@ -482,6 +482,7 @@
|
||||
./src/H5FSprivate.h
|
||||
./src/H5FSpublic.h
|
||||
./src/H5G.c
|
||||
./src/H5Gdeprec.c
|
||||
./src/H5Gent.c
|
||||
./src/H5Glink.c
|
||||
./src/H5Gloc.c
|
||||
@ -527,6 +528,10 @@
|
||||
./src/H5Ipkg.h
|
||||
./src/H5Iprivate.h
|
||||
./src/H5Ipublic.h
|
||||
./src/H5L.c
|
||||
./src/H5Lpkg.h
|
||||
./src/H5Lprivate.h
|
||||
./src/H5Lpublic.h
|
||||
./src/H5MF.c
|
||||
./src/H5MFprivate.h
|
||||
./src/H5MM.c
|
||||
@ -565,10 +570,12 @@
|
||||
./src/H5Pfapl.c
|
||||
./src/H5Pfcpl.c
|
||||
./src/H5Pgcpl.c
|
||||
./src/H5Plcpl.c
|
||||
./src/H5Pocpl.c
|
||||
./src/H5Ppkg.h
|
||||
./src/H5Pprivate.h
|
||||
./src/H5Ppublic.h
|
||||
./src/H5Pstrcpl.c
|
||||
./src/H5Ptest.c
|
||||
./src/H5R.c
|
||||
./src/H5Rprivate.h
|
||||
|
@ -172,6 +172,28 @@ New Features
|
||||
|
||||
Library:
|
||||
--------
|
||||
- Add H5L link APIs. Old APIs (H5Glink, H5Gmove, etc.) are still
|
||||
supported but deprecated.
|
||||
New APIs are:
|
||||
H5Llink - create a link to an object given its ID
|
||||
H5Lmove - just like H5Gmove2
|
||||
H5Lcopy - copy a link without copying the underlying object
|
||||
H5Lcreate_hard - like H5Glink2 for hard links
|
||||
H5Lcreate_soft - like H5Glink2 for soft links
|
||||
H5Lunlink - just like H5Gunlink
|
||||
H5Lget_linkval - just link H5Gget_linkval
|
||||
H5Lget_linkinfo - gets link-specific info (like H5Gget_objinfo)
|
||||
|
||||
In addition, H5Gcreate_expand, H5Tcommit_expand, and H5Dcreate_expand
|
||||
no longer create links to objects; objects must be manually linked
|
||||
using H5Llink or they will be deleted when the ID is closed.
|
||||
|
||||
Link Creation Property Lists can be used to pass character
|
||||
encoding (ASCII or UTF-8) for link names and to set the Intermediate
|
||||
Group Creation Flag:
|
||||
H5Pset_char_encoding, H5Pget_char_encoding
|
||||
H5Pset_copy_object, H5Pget_copy_object
|
||||
-JML 2006/7/5
|
||||
- Added managements of collective IO supports for chunking storage
|
||||
inside parallel HDF5
|
||||
1) Implemented One IO with collective mode for all chunks in the
|
||||
|
Loading…
Reference in New Issue
Block a user