summaryrefslogtreecommitdiffstats
path: root/src/H5system.c
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2016-12-12 19:16:07 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2016-12-12 19:16:07 (GMT)
commit651c2f30304ed9b8e9470039e46279635356a3cc (patch)
tree2609382d7e2a5b80a6193c898a9999bdc9f4193e /src/H5system.c
parent1bdf8fe8f7e4ca75afe2ffb0049e152bc4dbb80d (diff)
downloadhdf5-651c2f30304ed9b8e9470039e46279635356a3cc.zip
hdf5-651c2f30304ed9b8e9470039e46279635356a3cc.tar.gz
hdf5-651c2f30304ed9b8e9470039e46279635356a3cc.tar.bz2
Fix bad implementation of Windows nanosleep equivalent.
Diffstat (limited to 'src/H5system.c')
-rw-r--r--src/H5system.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/H5system.c b/src/H5system.c
index 4aada77..ac323c0 100644
--- a/src/H5system.c
+++ b/src/H5system.c
@@ -923,13 +923,12 @@ Wflock(int fd, int operation) {
* Fall 2016
*--------------------------------------------------------------------------
*/
-void
-Wnanosleep(uint64_t nanosec)
+int
+Wnanosleep(const struct timespec *req, struct timespec *rem)
{
/* XXX: Currently just a placeholder */
- FUNC_ENTER_NOAPI_NOINIT_NOERR
+ return 0;
- FUNC_LEAVE_NOAPI_VOID
} /* end Wnanosleep() */