diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2002-04-19 07:20:41 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2002-04-19 07:20:41 (GMT) |
commit | f5d5e9e2ff980545217a4f9efb6a4ff1ac90f8b9 (patch) | |
tree | 8e8f3b4d1c47d20ccfecf11bd0b3a3a1cb5d2265 /test/big.c | |
parent | 40117dd3849be65d039ca6aa02bb6d6a338c7f7b (diff) | |
download | hdf5-f5d5e9e2ff980545217a4f9efb6a4ff1ac90f8b9.zip hdf5-f5d5e9e2ff980545217a4f9efb6a4ff1ac90f8b9.tar.gz hdf5-f5d5e9e2ff980545217a4f9efb6a4ff1ac90f8b9.tar.bz2 |
[svn-r5205] Purpose:
Code cleanup
Description:
Platform dependent code related to the struct stat and fstat
calls polluted source codes. Hard to maintain.
Solution:
Platform dependent code are moved to H5private.h and then internal
code can #include H5private.h. Repeat those macro definition for
the stdio and multi drivers since they area examples for writing
a virtual file driver. They must not use any internal code.
Platforms tested:
eirene (parallel), modi4 (serial including gass driver.)
Diffstat (limited to 'test/big.c')
-rw-r--r-- | test/big.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -74,7 +74,7 @@ static int is_sparse(void) { int fd; - struct stat sb; + h5_stat_t sb; if ((fd=open("x.h5", O_RDWR|O_TRUNC|O_CREAT, 0666))<0) return 0; if (lseek(fd, (off_t)(1024*1024), SEEK_SET)!=1024*1024) return 0; |