summaryrefslogtreecommitdiffstats
path: root/fortran
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2007-11-20 03:43:58 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2007-11-20 03:43:58 (GMT)
commitb4f4670c811cae49e08f1799b6ea69a8bb1345f3 (patch)
tree5bcfdbd9e8dd0e86ee816d33da7739e752edcf34 /fortran
parentf23b5aafc1878b0dd4aac27184500c19cf0b8edd (diff)
downloadhdf5-b4f4670c811cae49e08f1799b6ea69a8bb1345f3.zip
hdf5-b4f4670c811cae49e08f1799b6ea69a8bb1345f3.tar.gz
hdf5-b4f4670c811cae49e08f1799b6ea69a8bb1345f3.tar.bz2
[svn-r14270] Description:
Removed the stream-vfd from the basic library code. (The stream-vfd source files are not removed yet but the MANIFEST has been updated to NOT release those stream-vfd source files.) Platforms tested: Kagiso and smirom. Then test the release tar ball in kagiso.
Diffstat (limited to 'fortran')
-rw-r--r--fortran/src/H5_f.c1
-rw-r--r--fortran/src/H5f90global.f904
2 files changed, 1 insertions, 4 deletions
diff --git a/fortran/src/H5_f.c b/fortran/src/H5_f.c
index 5464786..a9ac279 100644
--- a/fortran/src/H5_f.c
+++ b/fortran/src/H5_f.c
@@ -292,7 +292,6 @@ nh5init_flags_c( int_f *h5d_flags, int_f *h5f_flags,
h5fd_hid_flags[4] = H5FD_MULTI;
h5fd_hid_flags[5] = H5FD_SEC2;
h5fd_hid_flags[6] = H5FD_STDIO;
- h5fd_hid_flags[7] = H5FD_STREAM;
/*
* H5G flags
diff --git a/fortran/src/H5f90global.f90 b/fortran/src/H5f90global.f90
index 0b429e4..a13d732 100644
--- a/fortran/src/H5f90global.f90
+++ b/fortran/src/H5f90global.f90
@@ -315,7 +315,7 @@
!
! H5FD file drivers flags declaration
!
- INTEGER, PARAMETER :: H5FD_HID_FLAGS_LEN = 8
+ INTEGER, PARAMETER :: H5FD_HID_FLAGS_LEN = 7
INTEGER(HID_T) H5FD_hid_flags(H5FD_HID_FLAGS_LEN)
!DEC$if defined(BUILD_HDF5_DLL)
!DEC$ ATTRIBUTES DLLEXPORT :: /H5FD_HID_FLAGS/
@@ -329,7 +329,6 @@
INTEGER(HID_T) :: H5FD_MULTI_F
INTEGER(HID_T) :: H5FD_SEC2_F
INTEGER(HID_T) :: H5FD_STDIO_F
- INTEGER(HID_T) :: H5FD_STREAM_F
EQUIVALENCE(H5FD_hid_flags(1), H5FD_CORE_F)
EQUIVALENCE(H5FD_hid_flags(2), H5FD_FAMILY_F)
@@ -338,7 +337,6 @@
EQUIVALENCE(H5FD_hid_flags(5), H5FD_MULTI_F)
EQUIVALENCE(H5FD_hid_flags(6), H5FD_SEC2_F)
EQUIVALENCE(H5FD_hid_flags(7), H5FD_STDIO_F)
- EQUIVALENCE(H5FD_hid_flags(8), H5FD_STREAM_F)