summaryrefslogtreecommitdiffstats
path: root/src/H5private.h
diff options
context:
space:
mode:
authorRaymond Lu <songyulu@hdfgroup.org>2006-11-01 21:01:14 (GMT)
committerRaymond Lu <songyulu@hdfgroup.org>2006-11-01 21:01:14 (GMT)
commit0f84d2fb15813c10fca48f95772626c34039619d (patch)
treec01c3e75bc4de391f9117ed2fbabc8e39c4013e3 /src/H5private.h
parent712e344e999a6d757f80ea8ab33a3e63f4fa96df (diff)
downloadhdf5-0f84d2fb15813c10fca48f95772626c34039619d.zip
hdf5-0f84d2fb15813c10fca48f95772626c34039619d.tar.gz
hdf5-0f84d2fb15813c10fca48f95772626c34039619d.tar.bz2
[svn-r12841] Bug fix. The mechanism to handle interupted system call or partial I/O for reading data
may not work well for Direct I/O because of the requirement for data alignment. Took it out.
Diffstat (limited to 'src/H5private.h')
-rw-r--r--src/H5private.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/H5private.h b/src/H5private.h
index a43661b..b0f1292 100644
--- a/src/H5private.h
+++ b/src/H5private.h
@@ -726,6 +726,7 @@ H5_DLL int HDfprintf (FILE *stream, const char *fmt, ...);
#define HDlseek(F,O,W) lseek(F,O,W)
#endif
#define HDmalloc(Z) malloc(Z)
+#define HDposix_memalign(P,A,Z) posix_memalign(P,A,Z)
#define HDmblen(S,N) mblen(S,N)
#define HDmbstowcs(P,S,Z) mbstowcs(P,S,Z)
#define HDmbtowc(P,S,Z) mbtowc(P,S,Z)