diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2007-08-30 20:03:37 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2007-08-30 20:03:37 (GMT) |
commit | a4069db8f48121ca11d0465b260d9cd81152581b (patch) | |
tree | 37348ad7d71058a6f449255073d631db8c33794a /fortran | |
parent | 1374654210854d005546459e48c482c5ea01cba2 (diff) | |
download | hdf5-a4069db8f48121ca11d0465b260d9cd81152581b.zip hdf5-a4069db8f48121ca11d0465b260d9cd81152581b.tar.gz hdf5-a4069db8f48121ca11d0465b260d9cd81152581b.tar.bz2 |
[svn-r14131] Description:
Move H5Giterate() and H5G_iterate_t to deprecated symbols section,
replacing them with H5Literate and H5L_iterate_t respectively.
Tested on:
FreeBSD/32 6.2 (duty)
FreeBSD/64 6.2 (liberty)
Linux/32 2.6 (kagiso)
Linux/64 2.6 (smirom)
AIX/32 5.3 (copper)
Solaris/32 5.10 (linew)
Mac OS X/32 10.4.10 (amazon)
Diffstat (limited to 'fortran')
-rw-r--r-- | fortran/src/H5Gf.c | 4 | ||||
-rw-r--r-- | fortran/src/H5_f.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/fortran/src/H5Gf.c b/fortran/src/H5Gf.c index 1543fd6..3796b73 100644 --- a/fortran/src/H5Gf.c +++ b/fortran/src/H5Gf.c @@ -297,7 +297,7 @@ nh5glink_c(hid_t_f *loc_id, int_f *link_type, _fcd current_name, /* * Call appropriate link creation function */ - switch((H5G_link_t)*link_type) { + switch((H5L_type_t)*link_type) { case H5L_TYPE_HARD: if(H5Lcreate_hard((hid_t)*loc_id, c_current_name, H5L_SAME_LOC, c_new_name, H5P_DEFAULT, H5P_DEFAULT) < 0) goto DONE; @@ -359,7 +359,7 @@ nh5glink2_c(hid_t_f *cur_loc_id, _fcd cur_name, int_f *cur_namelen, /* * Call appropriate link creation function */ - switch((H5G_link_t)*link_type) { + switch((H5L_type_t)*link_type) { case H5L_TYPE_HARD: if(H5Lcreate_hard((hid_t)*cur_loc_id, c_cur_name, (hid_t)*new_loc_id, c_new_name, H5P_DEFAULT, H5P_DEFAULT) < 0) goto DONE; diff --git a/fortran/src/H5_f.c b/fortran/src/H5_f.c index b05d1b3..b4cfbd1 100644 --- a/fortran/src/H5_f.c +++ b/fortran/src/H5_f.c @@ -304,8 +304,8 @@ nh5init_flags_c( int_f *h5d_flags, int_f *h5f_flags, h5g_flags[3] = H5G_TYPE; h5g_flags[4] = H5G_LINK; h5g_flags[5] = H5G_LINK_ERROR; - h5g_flags[6] = H5G_LINK_HARD; - h5g_flags[7] = H5G_LINK_SOFT; + h5g_flags[6] = H5L_TYPE_HARD; + h5g_flags[7] = H5L_TYPE_SOFT; /* * H5I flags |