summaryrefslogtreecommitdiffstats
path: root/src/H5FDsec2.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2001-06-29 18:53:29 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2001-06-29 18:53:29 (GMT)
commit955ef79577044849f77e718011fe1a525971ac92 (patch)
tree403241392023c64f1f7bbf518d66c7ba4cc9e829 /src/H5FDsec2.c
parentaca104be974d9857a47b2c6b877c694693870b8b (diff)
downloadhdf5-955ef79577044849f77e718011fe1a525971ac92.zip
hdf5-955ef79577044849f77e718011fe1a525971ac92.tar.gz
hdf5-955ef79577044849f77e718011fe1a525971ac92.tar.bz2
[svn-r4086] Purpose:
Code Cleanup Description: CodeWarrior checkin broke the unix build in a couple of ways... Solution: Various tweaks and cleanups. Platforms tested: FreeBSD 4.3 (hawkwind)
Diffstat (limited to 'src/H5FDsec2.c')
-rw-r--r--src/H5FDsec2.c26
1 files changed, 25 insertions, 1 deletions
diff --git a/src/H5FDsec2.c b/src/H5FDsec2.c
index 847b8fd..4c9f967 100644
--- a/src/H5FDsec2.c
+++ b/src/H5FDsec2.c
@@ -75,6 +75,30 @@ typedef struct H5FD_sec2_t {
#endif
} H5FD_sec2_t;
+/*
+ * This driver supports systems that have the lseek64() function by defining
+ * some macros here so we don't have to have conditional compilations later
+ * throughout the code.
+ *
+ * file_offset_t: The datatype for file offsets, the second argument of
+ * the lseek() or lseek64() call.
+ *
+ * file_seek: The function which adjusts the current file position,
+ * either lseek() or lseek64().
+ */
+/* adding for windows NT file system support. */
+
+#ifdef H5_HAVE_LSEEK64
+# define file_offset_t off64_t
+# define file_seek lseek64
+#elif defined WIN32
+# define file_offset_t __int64
+# define file_seek _lseeki64
+#else
+# define file_offset_t off_t
+# define file_seek lseek
+#endif
+
/*
* These macros check for overflow of various quantities. These macros
@@ -635,7 +659,7 @@ H5FD_sec2_write(H5FD_t *_file, H5FD_mem_t UNUSED type, hid_t UNUSED dxpl_id, had
while (size>0) {
do {
assert(size==(hsize_t)((size_t)size)); /*check for overflow*/
- nbytes = HDwrite(file->fd, (void*) buf, (size_t)size);
+ nbytes = HDwrite(file->fd, buf, (size_t)size);
} while (-1==nbytes && EINTR==errno);
if (-1==nbytes) {
/* error */